Im即时通讯-web端代码
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.

1 anno fa
123456789101112131415161718
  1. import './assets/main.css'
  2. import { createApp } from 'vue'
  3. import { createPinia } from 'pinia'
  4. import App from './App.vue'
  5. import router from './router'
  6. import SzyxPushSdk from "../packages/szyx-im";
  7. const app = createApp(App)
  8. app.use(createPinia())
  9. app.use(router)
  10. app.use(SzyxPushSdk)
  11. // new SzyxPushSdk().init()
  12. app.mount('#app')