1.1.10 • Published 1 year ago
ct-helper v1.1.10
跨iframe域通信
- main.js 全局实例化
import { TTProxy } from 'ct-helper'
const tt = new TTProxy();
const vue = createApp(App)
vue.config.globalProperties.$tt = tt
vue.mount('#app')
- 调用接口
const res = await $tt.get({
param: {},
header: {},
url: 'getInfo',
});