route.js
529 Bytes
/*
* @Date: 2022-07-18 10:22:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-12-06 11:31:14
* @FilePath: /data-table/src/route.js
* @Description: 文件描述
*/
export default [{
path: '/',
component: () => import('@/views/index.vue'),
meta: {
title: '首页',
}
}, {
path: '/success',
component: () => import('@/views/success.vue'),
meta: {
title: '提交成功',
}
}, {
path: '/stop',
component: () => import('@/views/stop.vue'),
meta: {
title: '表单',
}
}];