Frontend Frameworks & VueJS

null

Things to read and practice during this week

  • Read: Vue Introduction
    • Contextualizes vue and describes a bit about what it does and how it works.
  • Practice: VueJS Official Tutorial
    • Primarily use the Composition API and SFC, but also be aware of options api and html version of vue
    • Do all 15 lessons
  • Create: Set up a vue application with npm
    • These instructions are the primary way that we’ll be setting up apps with VueJS
    • Skim: Lifecycle hooks
  • Watch: [VueJS Documentary]()
    • it’s a bit old now (4 years) but gives a bit of historical context into Vue and the frontend framework landscape
    • this is optional

Morning Scrum

Discuss the following in your groups

  • What are your biggest pain points about javascript?
  • What features do you want to see in a framework to make your life as a developer easier?
  • What do you know about javascript libraries and their roles in software development?

Class Debrief

As a class we will walk through the pain points that we are having with javascript as well as features that we would like to have built into how we write our code.

Frontend Frameworks

Why are we using Vue?

  • Vue has a rich ecosystem with lots to offer
  • It tends to be easier to learn from vanilla html and javascript
  • It’s mature
  • It’s got great documentation and a vibrant community

What’s the difference between Vue and Nuxt?

  • Nuxt is built using Vue. It is a Vue Framework that offers a lot of functionality built into it
  • Vue is the essential core of Nuxt, just like React is the essential core of Next
  • Nuxt provides project organization, build tool setup, and an easy way to handle modules and plugins, it also offers static site generation out of the box

Do I have to stick with one framework?

  • Not at all!
    • The goal is that with our basics in Vue and Nuxt, you’ll develop a familiarity with general principles common to other frontend frameworks and will be able to pick one that suits your programming style and philosophy

Vue and Vscode?

  • Try using the volar extension
  • Some work might be needed to get eslint and prettier to work with volar
  • Vetur is another exellent (but slightly older) extension for vue
    • it can be set to work well with prettier

VueJS: How to add it to a project

Progressive Adoption/Usage

  • Vue can be added to a project progressively by adding it to javascript or html pages see this without build tools example
    • This gives you the ability to add a bit of vue to a project without needing build tools
    • It also allows you to use just a minimal amount of vue syntax in an otherwise non vue project
  • We will be using Single File Components, however it’s worth while to try adding vue syntax to existing non vue projects or codepens to see the flexibility this framework gives you

With Build Tools/Single File Components

  • This is likely the way that you will most often encounter vue
  • You’ve already seen a version of this by using NuxtJS, Vue has it’s own build tools, cli, and gui for setting up projects.
  • You can also use vite which is an alternative build tool to webpack
  • A vue project is built around using single file components
    • These include the script, template, and style code blocks

Anatomy of a Single File Component

<template>

<!-- Write HTML here -->

</template>

<script setup>

// Write Javascript here

</script>

<style scoped>

/* Write CSS here */

<style>
  • All 3 are not always required.
  • using style scoped, you can keep your css variables bound at the component level, which increases modularity of your code
  • You can rearrange the tags in any order.
    • it’s common to see template - script - style. However some developers are placing the script tag ahead of template. It’s up to you which style you prefer

activity: Experiment with a vue SFC

  • vue sfc practice space
  • Add variables to the script tag just like you would in javascript
  • Try rendering them in the template tag by using moustache syntax {{ variableName }}
  • add conditional rendering inline in the double moustache syntax. ie: {{ score > 10 ? 'yay you win!' : 'boo, you lose'}}

Vue Directives Basics

  • Vue has a set of templating directives that you can use to add content to a web page. There are lots and they are all useful for different things. Today we will cover a couple basics to get you started
  • Directives List

v-bind

  • This is one of the most important. it allows you to bind data to html properties such as src in an img tag
  • You can also use it to bind styles v-bind css
  • It can be written out as v-bind:src="variableName" or by using the shorthand : as in :src="variableName
  • Example:
<img :src="cat.photo" :alt="cat.description" />

v-for

  • Use v-for to render a loop of information
  • It must have a key added. which should be the name of the iterator + .id
  • example (will print out a list of hero names providing that heroes exists as a list)
<ul>
  <li v-for="hero in heroes" :key="hero.id">
  {{ hero.name }}
  </li>
</ul>

v-slot

  • This allows you to create space inside a component for extra content to be added in specific uses
  • In your component, you use a v-slot to tell the component what to do with the extra info

Activity: Render a list with v-for

  • Create an array in the script tags
  • add a v-for to your code, probably connected to a li element (the v-for will duplicate whatever it’s attached to)
  • use double moustache to render the variables
  • Extra challenge:
    • use an array of objects
    • include src image links
    • data bind the image src and the alt text

Vue Composition API vs Options API

  • When you look up Vue documentation and examples, you’ll find two distinct types of syntax being used. One is the options api and the other is the composition api.
  • The Options API is older and will be eventually replaced by the composition api
  • They are both useful ways of structuring the logic for your code. They handle your variables, functions, and props.
  • API Reference Appendix
  • In this class we will default to the composition api

Comparative Example

  • Options API
<script>
export default {
  data() {
    variableKey: 'Variable Value'
  }
}
</script>
  • Composition API
<script setup>
const variableKey = 'Variable Value'
</script>

Activity: Refactor data from the options api to the composition api

Part 1

  • Navigate to the vue tutorial space
  • Select SFC and Composition API
  • Add a couple of variables inside a script tag
    • Start of with simple string variables
  • render them using moustache syntax

Part 2

  • Open another tab with the vuejs tutorial space in it
  • Select SFC and Options API
  • Try to recreate the data binding from your first example using options api syntax

Places to Use Vue

  • In a codepen single file component (least setup)
  • In the two spaces provided on the vue site (some setup, specific uses)
  • In a non sfc component (some setup)
  • In a vue project (more setup)
  • In a nuxt project (most setup)

Lab Time

  • Try working through vue’s tutorial (more structure)
  • Try refactoring a past activity in codepen into vue
  • Work on assignments

Vue Syntax

Vue Concepts

Today's Achievement

For labtime today, work through the vuejs 15 step tutorial