TA贡献1878条经验 获得超4个赞
这个是单页面应用 在路由中指定index.vue 为首页 就会把这个组件渲染到index.html中了例如这样(伪代码)
{ path: '/', component: (resolve) => require(['index.vue'], resolve) },
TA贡献1825条经验 获得超6个赞
设置路由重定向
import index from '@/components/index'{ path:'/', redirect:'/index'}
举报