更新记录
1.0.0(2021-01-08) 下载此版本
数字滚动插件
平台兼容性
属性说明
属性名 | 默认值 | 作用 | 说明 |
---|---|---|---|
num | 无 | 滚动数字 | 必传 |
color | #000000 | 文字颜色 | |
width | 15 | 宽度 | |
height | 15 | 滚动高度 | |
fontSize | 15 | 文字大小 |
页面使用
<xwCountup :num="num" color="#ff9e50" width='21' height='34' fontSize='34'></xwCountup>
js
import xwCountup from '@/components/xw-countup/index.vue';
export default {
components: {
xwCountup
},
data() {
return {
num: 100.1, // 滚动数字
};
},
}