import App from './App' import uView from './uni_modules/vk-uview-ui'; import Store from './store' import $lu from './lu' import $img from './api/img.js' import { createSSRApp } from 'vue' uni.$lu = $lu uni.$img = $img export function createApp() { const app = createSSRApp(App) app.use(uView) app.use(Store) return { app } }