Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
levy committed Nov 20, 2020
2 parents 538f5bd + ea628b6 commit 149a2f4
Show file tree
Hide file tree
Showing 4 changed files with 730 additions and 3 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"lib",
"src",
"packages",
"types"
"types",
"vetur-helper"
],
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -170,5 +171,9 @@
"post-commit": "git update-index --again"
}
},
"gren": "@femessage/grenrc"
"gren": "@femessage/grenrc",
"vetur": {
"tags": "vetur-helper/element-tags.json",
"attributes": "vetur-helper/element-attributes.json"
}
}
2 changes: 1 addition & 1 deletion packages/edit-table/src/main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default {
},
minCount() {
return this.min < 1 ? 1 : this.min;
return this.min < 0 ? 0 : this.min;
},
maxCount() {
Expand Down
Loading

0 comments on commit 149a2f4

Please sign in to comment.