fix: missing emits

This commit is contained in:
chenjiahan 2020-07-12 15:26:34 +08:00
parent 08e03e988f
commit d04c8c1e24
5 changed files with 10 additions and 0 deletions

View File

@ -61,6 +61,8 @@ export default createComponent({
},
},
emits: ['update:currentRate'],
beforeCreate() {
this.uid = `van-circle-gradient-${uid++}`;
},

View File

@ -21,6 +21,8 @@ export default createComponent({
},
},
emits: ['change', 'finish'],
data() {
return {
remain: 0,

View File

@ -8,6 +8,8 @@ const [createComponent, bem] = createNamespace('sidebar-item');
export default createComponent({
mixins: [ChildrenMixin('vanSidebar')],
emits: ['click'],
props: {
...routeProps,
dot: Boolean,

View File

@ -6,6 +6,8 @@ const [createComponent, bem] = createNamespace('sidebar');
export default createComponent({
mixins: [ParentMixin('vanSidebar')],
emits: ['change', 'update:modelValue'],
props: {
modelValue: {
type: [Number, String],

View File

@ -33,6 +33,8 @@ export default createComponent({
},
},
emits: ['change', 'drag-end', 'drag-start', 'update:modelValue'],
data() {
return {
dragStatus: '',