Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 652 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 652 Bytes

codecamp

A Vue.js project to demonnstrate concepts from framework

Build Setup

# install dependencies
$ npm install

# serve with hot reload at localhost:8080
$ npm run dev

If you want to start from scratch

$ npm install -g vue-cli
$ vue init webpack nameProject
$ cd nameProject
$ npm install --save vuetify
$ npm install --save axios vue-axios
$ npm install
$ npm run dev

Use - add in your main.js

import Vuetify from 'vuetify'
import axios from 'axios'
import VueAxios from 'vue-axios'
import("../node_modules/vuetify/dist/vuetify.min.css") 


Vue.use(Vuetify)
Vue.use(VueAxios, axios);