选项式 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'))
网友评论