vue设置全局属性

1.vue2中设置全局
//main.js

Vue.prototype.$message = {
name:'你好啊'
};

//页面取值
this.$message
2.vue3设置全局
//main.js
const app=createApp(App)
app.config.globalProperties.$message = {
name:'你好啊'
};

//页面取值
import { getCurrentInstance } from "vue";
export default {
setup() {
let { proxy } =getCurrentInstance() //getCurrentInstance()用于获取当前组件的上下文
console.log(proxy.$message);
}
}

vue设置全局属性最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/13187.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>