fu-loading 加载状态
平台差异
App | H5 | 微信小程序 | 支付宝小程序 | 百度小程序 | 头条小程序 |
√ | √ | √ | √ | √ | √ |
基本使用
<template>
<view>
<fu-loading v-if="isInit"></fu-loading>
</view>
</template>
<script>
export default {
data() {
return {
isInit: false
};
}
};
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14