Files
xl-mobile/src/main.js

13 lines
191 B
JavaScript
Raw Normal View History

2025-03-24 15:01:39 +08:00
import {
createSSRApp
} from "vue";
import App from "./App.vue";
import './scss/index.css';
export function createApp() {
const app = createSSRApp(App);
return {
app,
};
}