Vue问题求解
发布网友
发布时间:2022-04-23 08:49
我来回答
共1个回答
热心网友
时间:2022-06-18 14:19
man.js挂载:
const app = createApp(App)
app.config.globalProperties.$http = axios
methods中使用: this.$http
setup中使用:
import { getCurrentInstance } from 'vue'
export default {
setup() {
const $http = getCurrentInstance().appContext.config.globalProperties.$http
return {
}
}
}