vue3 使用 globalProperties 全局变量

2023-07-26  本文已影响0人  邦_

Vue官方说明

选项式 API的写法 this还是可以调用

组合式 不能直接使用 this 调用 globalProperties 全局变量

定义


import md5 from 'js-md5'
const app = createApp(App)
app.config.globalProperties.$md5 = md5


使用

import { getCurrentInstance } from 'vue';
const { proxy } = getCurrentInstance()
  console.log(proxy.$md5('1212121212'))


上一篇 下一篇

猜你喜欢

热点阅读