vue路由之视图命名

关键词:路由

服务政策

  • 售后服务
  • 三包支持
const Foo = { template: '
7天无理由退货
' } const Bar = { template: '
两年质保
' } const Baz = { template: '
免费升级固件
' } const router = new VueRouter({ routes: [ { path: '/after', components: { default: Foo, a: Bar, b: Baz } }, { path: '/other', components: { default: Baz, a: Bar, b: Foo } } ] }) new Vue({ router, el: '#app' })

你可能感兴趣的:(vue路由之视图命名)