Skip to content

sarn1/example-vue.js

Repository files navigation

Vue.js

# install with npm
npm i -g @vue/cli @vue/cli-service-global

# Now that we have Vue CLI installed globally, we can use the vue command anywhere. We'll use vue create to start a new project.
vue create vue-app

# Once that's done, you can move to the new app that's been created and serve to run the dev server.
cd vue-app
npm run serve

# -OR- I've had success with this
npm install
npm run serve

Videos:

To Do