示例
vue
<template>
<view>
<ex-loading size="20px" :duration="1200"></ex-loading>
<ex-loading size="30px" :duration="2400"></ex-loading>
<ex-loading size="40px" :duration="1200"></ex-loading>
<ex-loading size="50px" :duration="2400"></ex-loading>
<ex-loading
size="60px"
:duration="1200"
type="dot"
color="red"
></ex-loading>
</view>
</template>
<script>
export default {
components: {},
data() {
return {};
},
methods: {},
};
</script>
<style lang="scss" scoped></style>
属性
属性名 | 类型 | 默认值 | 可选值 | 说明 |
---|---|---|---|---|
size | String | 30px | 大小 | |
color | String | rgb(25, 190, 107) | 颜色 | |
borderWidth | String | 5px | 宽度粗细 | |
duration | Number | 1000 | 旋转快慢(ms) | |
type | String | line | line dot | 圆点还是直线 |