Files
kxfx/src/router/index.js
2025-10-10 18:32:13 +08:00

28 lines
492 B
JavaScript

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