main.js 266 B

1234567891011121314
  1. import App from './App.vue'
  2. import { createSSRApp } from 'vue'
  3. import JessibucaPlugin from './utils/jessibuca-plugin'
  4. export function createApp() {
  5. const app = createSSRApp(App)
  6. // 注册Jessibuca插件
  7. app.use(JessibucaPlugin)
  8. return {
  9. app
  10. }
  11. }