1. 全局变量挂载
// vue2
Vue.prototype.$lm = {}
// vue3
const app = Vue.createApp({})
app.config.globalProperties.$lm = {}
2.声明类型
使用 ts 的情况下,挂载完全局变量后,在 vue 文件中,通过
this
对象.
出来提示,不存在该类型
我们需要声明一下:
新建一个 xxx.d.ts
文件
//xxx.d.ts
export{} // 必须保留
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$lm:any
}
}
ok,现在就可以通过 this
对象 .
出 $lm
变量了
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于