Skip to content

Commit a3f0d46

Browse files
committed
Update mixin docs
1 parent c39d839 commit a3f0d46

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

docs/mixins/circle.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
### Props
22
```js
33
{
4+
fill: {
5+
type: Boolean,
6+
custom: true,
7+
default: true
8+
},
49
radius: {
510
type: Number,
611
default: null

docs/mixins/path.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
fill: {
5050
type: Boolean,
5151
custom: true,
52-
default: true
52+
default: false
5353
},
5454
fillColor: {
5555
type: String,

docs/mixins/polygon.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
### Props
2-
3-
`Polygon` does not have any props
2+
```js
3+
{
4+
fill: {
5+
type: Boolean,
6+
custom: true,
7+
default: true
8+
}
9+
}
10+
```
411

512
### Methods
613

0 commit comments

Comments
 (0)