vue2 的全局函数和变量
vue2 中我们可以挂到 prototype
Vue.prototype.$http = () => {};
vue3 中的全局函数和变量
vue3 没有 Prototype 属性
const app = createApp({});
app.config.globalProperties.$http = () => {};
vue3 过滤器
app.config.globalProperties.$filters = {
format<T extends any>(str: T): string {
return `$${str}`
}
}
需要声明类型
type Filter = {
format: <T extends any>(str: T) => T
}
// 声明要扩充@vue/runtime-core包的声明.
// 这里扩充"ComponentCustomProperties"接口, 因为他是vue3中实例的属性的类型.
declare module '@vue/runtime-core' {
export interface ComponentCustomProperties {
$filters: Filter
}
}
使用
import { getCurrentInstance, ComponentInternalInstance } from 'vue';
const { appContext } = <ComponentInternalInstance>getCurrentInstance()
console.log(appContext.config.globalProperties.$env);