wuyuncheng-26's picture
upload files from Harry-zklcdc/go-proxy-bingai
d669ddb verified
raw
history blame contribute delete
365 Bytes
import { createRouter, createWebHashHistory } from 'vue-router';
const router = createRouter({
// history: createWebHistory(import.meta.env.BASE_URL),
history: createWebHashHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'chat',
component: () => import('@/views/chat/index.vue'),
},
],
});
export default router;