ImJs/packages/szyx-im/index.ts

10 行
240 B
TypeScript

2023-05-16 15:19:08 +08:00
import SzyxPush from './src/szyx-push-sdk'
import type { App } from "vue";
const install = (app: App) => {
// app.component(`SzyxPush`, new SzyxPush());
app.config.globalProperties.$SzyxPush = new SzyxPush()
}
export default install;