fix(Rate): emit warning

This commit is contained in:
chenjiahan 2020-08-22 17:26:26 +08:00
parent af4451908b
commit c32fba0f1e
3 changed files with 4 additions and 1 deletions

View File

@ -161,6 +161,7 @@ export default {
methods: {
toggle(index) {
// TODO ref in for
this.$refs.checkboxes[index].toggle();
},

View File

@ -157,7 +157,7 @@ export default {
},
methods: {
onChange1(picker, value, index) {
onChange1(value, index) {
this.$toast(this.t('toastContent', value, index));
},

View File

@ -58,6 +58,8 @@ export default createComponent({
},
},
emits: ['change', 'update:modelValue'],
created() {
this.itemRefs = [];
},