vue3 全局设置熟悉,setup 中使用
由于setup 中没有this 对象
所以不能像vue2中直接用 this.$http() 调用如下方法
app.config.globalProperties.$http = () => {
//http
}
setup(props, context) {
const that = getCurrentInstance()
that.proxy.$http ()
}
由于setup 中没有this 对象
所以不能像vue2中直接用 this.$http() 调用如下方法
app.config.globalProperties.$http = () => {
//http
}
setup(props, context) {
const that = getCurrentInstance()
that.proxy.$http ()
}
66