Vue 3.x 定义全局函数和变量

发布于 2024-10-01 05:01:08 字数 1353 浏览 8 评论 0

globalProperties

由于 Vue3 没有 Prototype 属性,使用 app.config.globalProperties 代替,然后去定义变量和函数

案例

Vue3 移除了过滤器,正好可以使用全局函数代替 Filters

// main.ts
app.config.globalProperties.$filters = {
  format<T extends any>(str: T): string {
    return `$${str}`
  }
}


// 声明文件,不然 TS 无法正确类型 推导
type Filter = {
  format: <T extends any>(str: T) => T
}
// 声明要扩充 @vue/runtime-core 包的声明.
// 这里扩充"ComponentCustomProperties"接口, 因为他是 vue3 中实例的属性的类型.
declare module '@vue/runtime-core' {
  export interface ComponentCustomProperties {
    $filters: Filter
  }
<script setup lang="ts">
import { getCurrentInstance, ComponentInternalInstance } from 'vue';
 
const { appContext } = <ComponentInternalInstance>getCurrentInstance()
console.log(appContext.config.globalProperties.$env);
  
</script>

或者 hooks 目录下新建一个 useCurrentInstance.ts 文件:

import { getCurrentInstance, ComponentInternalInstance } from 'vue'

export default function useCurrentInstance() {
  const { appContext } = getCurrentInstance() as ComponentInternalInstance
  const globalProperties = appContext.config.globalProperties
  return globalProperties
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

0 文章
0 评论
23 人气
更多

推荐作者

qq_E2Iff7

文章 0 评论 0

Archangel

文章 0 评论 0

freedog

文章 0 评论 0

Hunk

文章 0 评论 0

18819270189

文章 0 评论 0

wenkai

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文