This commit is contained in:
lixiaobang 2022-11-10 09:39:48 +08:00
commit a2b899cfc3
4 changed files with 37 additions and 14338 deletions

14356
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -25,6 +25,7 @@
</div>
<div class="content">
<router-view />
</div>
</div>
</template>

View File

@ -3,18 +3,26 @@ import Router from 'vue-router'
Vue.use(Router)
const originalPush = Router.prototype.push
Router.prototype.push = function push (location) {
return originalPush.call(this, location).catch(err => err)
}
export default new Router({
mode: 'history',
base: process.env.BASE_URL,
routes: [
{
path: '/',
redirect:'/home',
path: '/',
redirect:'/index',
},
{
path: '/home',
name: 'home',
component: () => import ('./views/Home.vue')
path: '/index',
name: 'index',
component: () => import ('./views/index.vue')
},
{
path: '/stationBuilding',