Im即时通讯-web端代码
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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;