Files
kxfx/src/router/index.js
2025-09-10 01:35:04 +08:00

28 lines
488 B
JavaScript

import Vue from 'vue'
import VueRouter from 'vue-router'
import HomeView from '../views/home.vue'
import residentAnalysis from '@/views/residentAnalysis/index.vue'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'home',
component: HomeView,
},
{
path: '/residentAnalysis',
name: 'residentAnalysis',
component: residentAnalysis,
},
]
const router = new VueRouter({
mode: 'hash',
base: process.env.BASE_URL,
routes,
})
export default router