• 周三. 9 月 18th, 2024

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

vue-router 的使用

admin

11 月 28, 2021

vue-router 是 vue  的  一个特色。

下面介绍vue-router 的使用:

一、先将vue-router作为vue 的一个插件使用

import Vue from 'vue'
import VueRouter from 'vue-router'
import home from '@/components/Home'
import about from '@/components/About'

//作为vue的插件使用
Vue.use(Router)

const routes = new VueRouter({
  routes: [
  {
    path: '/home',
    name: 'Home',
    component: home
  },
  {
    path: '/about',
    name: 'About',
    component: about
  }
  {
    path: '*',
    redirect: '/home'
  }
]
   
}) 

  

发表回复