组合式函数
如果你还不了解组合式函数,请先阅读 组合式 API 常见问答 和 组合式函数。
我们使用 vue-demi 和 vue-use 来同时支持 vue2
和 vue3
。请先阅读它们的使用说明。
npm
shellnpm install @vueuse/core@^9.13.0
yarn
shellyarn add @vueuse/core@^9.13.0
pnpm
shellpnpm add @vueuse/core@^9.13.0
如果你希望使用 @vueuse/core@^10.0.0
或 @vueuse/core@^11.0.0
,请查看 dcloudio/uni-app#4604 内提供的解决方案。
从 @uni-helper/uni-network/composables
中导入组合式函数后即可使用。
typescript
import { useUn } from '@uni-helper/uni-network/composables';
useUn
的用法和 useAxios 几乎完全一致。这里不再赘述。