docs: add period at the end of sentence

This commit is contained in:
chenjiahan
2020-09-27 21:02:52 +08:00
parent 4f10430119
commit a5dbcf9638
64 changed files with 230 additions and 219 deletions
+6 -6
View File
@@ -13,7 +13,7 @@ Vue.use(Circle);
### 基础用法
`rate`属性表示进度条的目标进度,`v-model`表示动画过程中的实时进度。当`rate`发生变化时,`v-model`会以`speed`的速度变化,直至达到`rate`设定的值。
`rate` 属性表示进度条的目标进度,`v-model` 表示动画过程中的实时进度。当 `rate` 发生变化时,`v-model` 会以 `speed` 的速度变化,直至达到 `rate` 设定的值。
```html
<van-circle v-model="currentRate" :rate="30" :speed="100" :text="text" />
@@ -36,7 +36,7 @@ export default {
### 宽度定制
通过`stroke-width`属性来控制进度条宽度
通过 `stroke-width` 属性来控制进度条宽度
```html
<van-circle
@@ -49,7 +49,7 @@ export default {
### 颜色定制
通过`color`属性来控制进度条颜色,`layer-color`属性来控制轨道颜色
通过 `color` 属性来控制进度条颜色,`layer-color` 属性来控制轨道颜色
```html
<van-circle
@@ -62,7 +62,7 @@ export default {
### 渐变色
`color`属性支持传入对象格式来定义渐变色
`color` 属性支持传入对象格式来定义渐变色
```html
<van-circle
@@ -89,7 +89,7 @@ export default {
### 逆时针方向
`clockwise`设置为`false`,进度会从逆时针方向开始
`clockwise` 设置为 `false`,进度会从逆时针方向开始
```html
<van-circle
@@ -102,7 +102,7 @@ export default {
### 大小定制
通过`size`属性设置圆环直径
通过 `size` 属性设置圆环直径
```html
<van-circle v-model="currentRate" :rate="rate" size="120px" text="大小定制" />