Im即时通讯-web端代码
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
341B

  1. import type { ISzyxPush } from "../packages/szyx-im/src/szyx-push-sdk";
  2. import { ComponentCustomProperties } from "vue";
  3. declare module "@vue/runtime-core" {
  4. interface ComponentCustomProperties {
  5. $SzyxPush: ISzyxPush; // 这里填类型
  6. }
  7. }
  8. // 必须导出,才能在其他文件中使用
  9. export default ComponentCustomProperties;