| | |
| | | import AdMain from './components/Administrator/AdMain.vue' |
| | | import AdEdit from './components/Administrator/AdEdit.vue' |
| | | |
| | | |
| | | Vue.use(Router) |
| | | |
| | | const router = new Router({ |
| | | routes: [ |
| | | { path: '/', redirect: '/home' }, |
| | | { path: '/login', component: Login }, |
| | | { path:'/administrator', |
| | | { |
| | | path: '/administrator', |
| | | component: Administrator, |
| | | children: [{ path:'welcome',component:Welcome }, |
| | | children: [ |
| | | { path: 'welcome', component: Welcome }, |
| | | { path:'main',component:Main }, |
| | | { path:'edit',component:Edit }, |
| | | { path:'news',component:News }, |
| | | { path:'editlunbo',component:EditLunBo }, |
| | | { path:'admain',component:AdMain }, |
| | | { path:'adedit',component:AdEdit }] |
| | | { path: 'adedit', component: AdEdit } |
| | | ] |
| | | }, |
| | | { |
| | | path: '/home', |
| | |
| | | path:'news', |
| | | name:'News', |
| | | component:News |
| | | }, |
| | | } |
| | | ] |
| | | }, |
| | | { path:'*',component:NotFound } |
| | | ], |
| | | scrollBehavior(to, from, savedPosition) { //页面跳转后自动回到顶部 |
| | | scrollBehavior(to, from, savedPosition) { |
| | | //页面跳转后自动回到顶部 |
| | | if (savedPosition) { |
| | | return savedPosition |
| | | } |