init 初始化

This commit is contained in:
yuping
2022-11-28 11:45:27 +08:00
parent b452f95d0a
commit a0380b435f

View File

@@ -1,4 +1,4 @@
import { createRouter, createWebHashHistory } from 'vue-router';
import {createRouter, createWebHashHistory, createWebHistory} from 'vue-router';
import routesConfig from './config';
// console.log('routesConfig', routesConfig)
@@ -12,7 +12,7 @@ const routes = [
]
const router = createRouter({
history: createWebHashHistory(),
history: createWebHistory(),
routes
})