generated from Leo_Ding/web-template
26 lines
551 B
JavaScript
26 lines
551 B
JavaScript
import home from './home'
|
|
// import form from './form'
|
|
// import list from './list'
|
|
// import profile from './profile'
|
|
// import result from './result'
|
|
// import exception from './exception'
|
|
// import admin from './admin'
|
|
import system from './system'
|
|
// import link from './link'
|
|
// import iframe from './iframe'
|
|
// import other from './other'
|
|
|
|
export default [
|
|
...home,
|
|
// ...form,
|
|
// ...list,
|
|
// ...profile,
|
|
// ...result,
|
|
// ...exception,
|
|
// ...admin,
|
|
...system,
|
|
// ...link,
|
|
// ...iframe,
|
|
// ...other,
|
|
]
|