Vuetify
Vuetify is a Material Design Component Framework for Vue.js.
The Net Ninja offers an excellent free 32 part course on YouTube about learning Vuetify. Course files can also be downloaded.
TypeScript
References
$ vue create my-app > Manually select features * TypeScript
$ cd my-app $ vue add vuetify
Put the following type hint in your app’s tsconfig
"compilerOptions": { "types": ["vuetify"],
$ npm run build
Fix compiler warnings. This will probably be adding semi-colons to main.ts and vuetify.ts
$ npm run serve