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.

10 lines
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;