Vue3.0 设置原型方法并使用
作者:
抽疯的稻草绳 | 来源:发表于
2021-11-24 22:18 被阅读0次import { ElMessage } from 'element-plus'
app.config.globalProperties.$message = ElMessage //原型挂载
const instance = getCurrentInstance()
const _this = instance.appContext.config.globalProperties
_this.$message.error('Oops, this is a error message.')
const { appContext } = getCurrentInstance()
const globalProperties = appContext.config.globalProperties
globalProperties.$message.error('Oops, this is a error message.')
本文标题:Vue3.0 设置原型方法并使用
本文链接:https://www.haomeiwen.com/subject/ismotrtx.html
网友评论