store-management-app/src/main.js

11 lines
151 B
JavaScript
Raw Normal View History

2024-08-26 03:15:07 +00:00
import {
createSSRApp
} from "vue";
import App from "./App.vue";
export function createApp() {
const app = createSSRApp(App);
return {
app,
};
}