dewfall123 / ahooks-vue

🛠️ Vue hooks library.
https://dewfall123.github.io/ahooks-vue/
128 stars 29 forks source link

出现了警告 #15

Closed testst12 closed 2 years ago

testst12 commented 3 years ago

vue版本 3.X ahooks-vue 版本: 最新 使用 vite2 官方模版创建项目,只额外引入了ahook-vue ,出现了警告。 找了一晚上没有发现原因 image

dewfall123 commented 3 years ago

额 useRequest 里面有个inject, 目的是用来设置request全局设置的。

 contextConfig = inject<Partial<UseRequestOptions<R, P>>>(RequestConfig) ?? {};
testst12 commented 3 years ago

@dewfall123 我没有理解您的意思 我该怎样做才能去掉这个警告

dewfall123 commented 3 years ago

可以在最外层provide一下

import { RequestConfig } from 'ahooks-vue';

provide(RequestConfig, {
  requestMethod: axios.request,
});
xiaoyao316 commented 2 years ago

提交了一个pr修复这个问题

dewfall123 commented 2 years ago

fixed #19