14 lines
217 B
Plaintext
14 lines
217 B
Plaintext
import { createSSRApp } from "vue";
|
|
import App from "./App.vue";
|
|
|
|
import uviewPlus from 'uview-plus'
|
|
|
|
export function createApp() {
|
|
const app = createSSRApp(App);
|
|
|
|
app.use(uviewPlus)
|
|
return {
|
|
app,
|
|
};
|
|
}
|