提交 3106df5a 编写于 作者: Q qq_48973607

Mon Aug 21 12:29:00 CST 2023 inscode

上级 86d4ce4a
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
createApp(App).mount('#app')
import router from './router'
createApp(App).use(router).mount('#app')
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] = [];
const router = createRouter({
history: createWebHistory(),
routes,
});
export default router;
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册