// #ifdef H5 import './static/js/plus' import './static/js/wifi' // #endif import App from './App' import store from './store' import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) app.use(store) return { app } }