邃芒智像(Uniapp : WX、TT、H5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 regels
366 B

  1. // main.js
  2. import uviewPlus from 'uview-plus'
  3. import App from './App'
  4. import "./style/my.scss";
  5. //#region VUE3
  6. import { createSSRApp } from 'vue'
  7. import { store } from '../src/store/index'
  8. export function createApp() {
  9. const app = createSSRApp(App)
  10. app.use(uviewPlus)
  11. app.use(store)
  12. return {
  13. app
  14. }
  15. }
  16. //#endregion -----------------------