由于setup 中没有this 对象
所以不能像vue2中直接用 this.$http() 调用如下方法

app.config.globalProperties.$http = () => {
  //http
}


setup(props, context) {
    const that = getCurrentInstance()
    that.proxy.$http ()
}


标签: none

仅有一条评论

  1. 66 66

    66

添加新评论