邃芒智像(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.
 
 
 
 

19 lines
341 B

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