Im即时通讯-web端代码
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

11 рядки
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;