mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
21 lines
539 B
TypeScript
21 lines
539 B
TypeScript
import dashboard from './dashboard'
|
|
import reyl from './rely'
|
|
import error from './error'
|
|
import echart from './echart'
|
|
import scrollReveal from './scroll-reveal'
|
|
import axios from './axios'
|
|
import table from './table'
|
|
|
|
const routes = [dashboard, echart, table, axios, scrollReveal, error, reyl]
|
|
|
|
export default routes
|
|
|
|
/**
|
|
*
|
|
* 弃用自动导入路由模块方式
|
|
*
|
|
* 采用手动引入子路由模块方式
|
|
*
|
|
* 因为自动导入路由方式在实际体验后还是有一些小问题, 综合考虑后, 还是自己手动挡吧
|
|
*/
|