美文网首页
Vue3.0 设置原型方法并使用

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