10 行
240 B
TypeScript
10 行
240 B
TypeScript
|
|
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;
|