初始化

This commit is contained in:
qsh
2026-01-26 15:36:37 +08:00
commit b1843402c0
74 changed files with 9132 additions and 0 deletions

14
src/main.js Normal file
View File

@@ -0,0 +1,14 @@
import { createSSRApp } from 'vue';
import App from './App';
import store from './store'; // store
import { install } from './plugins'; // plugins
import './permission'; // permission
export function createApp() {
const app = createSSRApp(App);
app.use(store);
install(app);
return {
app
};
}