import Vue from 'vue' import Router from 'vue-router' //第一题#Vue路由 import FunctionComponent from '@/components/FunctionComponent' import InstructionComponent from '@/components/InstructionComponent' Vue.use(Router) const routes = [{ path:'/App', name:'App', component:app, children:[ ]}, //第一题#Vue路由 { path:'/function', name:'FunctionComponent', component:FunctionComponent }, { path:'/instruction', name:'InstructionComponent', component:InstructionComponent }, ] const router = new Router({ mode:'history', routes }) export default router;
时间: 2024-03-28 12:38:23 浏览: 50
这是一个Vue.js应用中使用Vue Router进行路由管理的代码。其中,首先引入Vue和Vue Router模块,并通过Vue.use()方法将Vue Router注册为Vue插件。接着定义了两个组件FunctionComponent和InstructionComponent,并将它们分别映射到路由path为'/function'和'/instruction'的路径中。
在routes数组中,定义了一个根路由path为'/App',对应的组件为app,并定义了一个空的子路由数组,可以在子路由中添加更多的路由路径和组件。同时,还定义了两个具体的路由路径'/function'和'/instruction',对应的组件分别为FunctionComponent和InstructionComponent。
最后,使用new Router()方法创建一个路由实例router,并设置路由的模式为history模式,并将定义好的routes数组传入router的参数中。
通过export default router导出路由实例,以便在Vue应用中使用。
阅读全文