{{ title }}
{{ description }}
npm install -g @vue/cli
vue create my-first-vue-app
cd my-first-vue-app
npm run serve
{{ description }}
const UserProfile = () => import('./views/UserProfile.vue')
const routes = [ { path: '/profile', component: UserProfile } ]