1.0.0 • Published 9 months ago

@mt-kit/vue-components v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

@mt-kit/vue-components

注:自定义 Vue 组件。

下载

npm i @mt-kit/vue-components

组件

CountTo

<script lang="ts" setup>
import {
  CountTo
} from "@mt-kit/vue-components";
</script>
<template>
  demo
  <hr />

  <CountTo
    :start-val="1"
    :end-val="10"
    :decimals="3"
  />
</template>

Attributes

属性作用默认值
autoplay是否自动播放true
decimal根据小数位置来决定的.
decimals多少位小数0
delay延迟执行动画开始的时间0
duration数字滚动时间1000
endVal结束数字100
startVal开始数字0
prefix前缀-
separator分隔符,
style滚动数字的样式-
suffix后缀-
1.0.0

9 months ago