install vue-router code example
Example 1: install vue router
npm install vue-router
Example 2: vue js cdn
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
Example 3: installing vue router & implementation
npm install vue-router
import VueRouter from 'vue-router';
Vue.use(VueRouter);
const router = new VueRouter({
routes,
mode: 'history'
});
new Vue({
router,
render: h => h(App)
}).$mount('#app')
import linkName from './components/fileName.vue';
export const routes = [
{
path: '/',
component: linkName
}
]
Example 4: install vue router
cd [project]
npm install --save vue-router
Example 5: add router to vue
vue add router # Vue CLI
Example 6: setup vue router
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)