UNPKG

aqsc-mobile-com

Version:

基于uni-ui实现的二次封装

16 lines (13 loc) 272 B
import { createSSRApp } from 'vue' import App from './App.vue' import './styles/reset.scss' import VConsole from 'vconsole' // #ifdef H5-TEST new VConsole() // #endif export function createApp() { const app = createSSRApp(App) return { app, } }