Im即时通讯-web端代码
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

10 líneas
240B

  1. import SzyxPush from './src/szyx-push-sdk'
  2. import type { App } from "vue";
  3. const install = (app: App) => {
  4. // app.component(`SzyxPush`, new SzyxPush());
  5. app.config.globalProperties.$SzyxPush = new SzyxPush()
  6. }
  7. export default install;