vue3中使用element-plus调用message
程序员文章站
2022-06-24 12:37:49
环境:vue3+typescript+element-plus全局引入element之后,element已经在 app.config.globalProperties 添加了全局方法 $message所以在options API中可以直接使用 mounted(){ (this as any).$message.success("this.$message"); }在Composition API中setup方法传入了两个变量,props和context,context作为上下文...
环境:vue3+typescript+element-plus
- 全局引入element之后,element已经在 app.config.globalProperties 添加了全局方法 $message
所以在options API中可以直接使用
mounted(){
(this as any).$message.success("this.$message");
}
-
在Composition API中setup方法传入了两个变量,props和context,context作为上下文取代this,但是context中只有emit,attrs,和slots,而直接在setup中使this,会出现问题:官方网站的说明:
在 setup() 内部,this 不会是该活跃实例的引用,因为 setup() 是在解析其它组件选项之前被调用的,所以 setup() 内部的 this 的行为与其它选项中的 this 完全不同。这在和其它选项式 API 一起使用 setup() 时可能会导致混淆。
所以可以使用getCurrentInstance方法获取实例。此方法在全局引入element-plus之后就可直接使用
//helloworld.vue
import { getCurrentInstance, defineComponent,onMounted } from 'vue';
export default = defineComponent{
setup(omprops,content){
onMounted(()=>{
getCurrentInstance()?.appContext.config.globalProperties.$message.success("聪明");
})
}
- 还有一种方法是使用 provide/inject;
//main.ts
import { createApp } from 'vue'
import App from './App.vue'
import element from 'element-plus'
import 'element-plus/lib/theme-chalk/index.css'
import {ElMessage} from 'element-plus'
const app = createApp(App)
app.use(element)
//如果没有全局引用element,还需写下面一句
//app.config.globalProperties.$message = ElMessage;
app.provide('$message', ElMessage)
app.mount('#app')
//helloworld.vue
import { inject, defineComponent,onMounted } from 'vue';
export default = defineComponent{
setup(omprops,content){
onMounted(()=>{
(inject('$message') as any).success("inject");
})
}
- 在Composition api中最简单的写法就是按需引入。
//helloworld.vue
import { inject, defineComponent,onMounted } from 'vue';
import { ElMessage } from 'element-plus'
export default = defineComponent{
setup(omprops,content){
onMounted(()=>{
ElMessage.success('按需引入');
})
}
本文地址:https://blog.csdn.net/qq_40185480/article/details/110926273
推荐阅读
-
浅析PHP中call user func()函数及如何使用call user func调用自定义函数
-
android中soap协议使用(ksoap调用webservice)
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值
-
Angular外部使用js调用Angular控制器中的函数方法或变量用法示例
-
C#中WPF使用多线程调用窗体组件的方法
-
Lua使用C++中类的调用方法
-
SQL Server中调用C#类中的方法实例(使用.NET程序集)
-
vue3中provide和inject的使用
-
在SpringBoot中,如何使用Netty实现远程调用方法总结
-
vue3中使用element-plus调用message