The Wayback Machine - http://web.archive.org/web/20210125115708/https://github.com/itenium-be/Vue.js-Tutorial
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Vue.js Technical Session

Prerequisites (optional)

01-HelloWorld

Used the example from Vue Mastery.

Start

npx http-server

cli-socks

Converted 01-HelloWorld to a with Vue CLI generated "full blown" application (Routing Vuex, SCSS, TypeScript, ...)

Installation

cd cli-socks
npm install

ATTN: Some Webstorm attendees needed to do an additioan npm install node-sass. As always with npm, read the error messages :)

Start

The idea is for the attendees to "claim" a ticket (by replying to it) and create a PR once ready.

npm run serve

Common Issues

Create models so that the typescript issues go away... (now need to do const x = state.products as any)

Not Covered

02-Snippets

Some code examples on slots, mixins, directives, filters, ...

Vue CLI

npm install -g @vue/cli

vue --version
vue create cli-socks

Testing

npm run test:unit