15 lines
229 B
TypeScript
15 lines
229 B
TypeScript
|
|
import { createSSRApp } from "vue";
|
||
|
|
import { cool } from "./cool";
|
||
|
|
import App from "./App.uvue";
|
||
|
|
import "./router";
|
||
|
|
|
||
|
|
export function createApp() {
|
||
|
|
const app = createSSRApp(App);
|
||
|
|
|
||
|
|
cool(app);
|
||
|
|
|
||
|
|
return {
|
||
|
|
app
|
||
|
|
};
|
||
|
|
}
|