index.ts 240 B

12345678910
  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;