intro text
To start developing vue web applications, you should install node.js.
npm install -g @vue-cli
vue create <app-name>
In our setup, we choose to use the following features:
- Babel
- Typescript
- Router
- CSS Pre-processors
- Linter
npm install
npm run serve
During the workshop, we used some libraries to make it all work.
Linting is process to analyse the code and look for possible errors. The vue cli has a functionality to automaticaly fix some errors. Sometimes, those fixes break your application, so please be careful using this functionality.
npm run lint --fix
We used vuetify to integrate material design in our project. Take a look a the get started page to see how you should use Vuetify and which components are available.
After installation, you can find the configuration of vuetify in src/plugings/vuetify.ts.