diff --git a/dist/area/index.js b/dist/area/index.js index 2d3bf723..6d7b6de5 100644 --- a/dist/area/index.js +++ b/dist/area/index.js @@ -2,14 +2,8 @@ import { VantComponent } from '../common/component'; VantComponent({ props: { title: String, + value: String, loading: Boolean, - value: { - type: String, - observer(value) { - this.code = value; - this.setValues(); - } - }, itemHeight: { type: Number, value: 44 @@ -24,10 +18,7 @@ VantComponent({ }, areaList: { type: Object, - value: {}, - observer() { - this.setValues(); - } + value: {} } }, data: { @@ -40,6 +31,13 @@ VantComponent({ return columns.slice(0, +columnsNum); } }, + watch: { + value(value) { + this.code = value; + this.setValues(); + }, + areaList: 'setValues' + }, methods: { onCancel() { this.$emit('cancel', { diff --git a/dist/badge-group/index.js b/dist/badge-group/index.js index cc1f4ec1..45236929 100644 --- a/dist/badge-group/index.js +++ b/dist/badge-group/index.js @@ -1,28 +1,29 @@ import { VantComponent } from '../common/component'; VantComponent({ - relations: { - '../badge/index': { - type: 'descendant', - linked(target) { - this.data.badges.push(target); - this.setActive(); - }, - unlinked(target) { - this.data.badges = this.data.badges.filter(item => item !== target); - this.setActive(); - } + relation: { + name: 'badge', + type: 'descendant', + linked(target) { + this.data.badges.push(target); + this.setActive(); + }, + unlinked(target) { + this.data.badges = this.data.badges.filter(item => item !== target); + this.setActive(); } }, props: { active: { type: Number, - value: 0, - observer: 'setActive' + value: 0 } }, data: { badges: [] }, + watch: { + active: 'setActive' + }, beforeCreate() { this.currentActive = -1; }, diff --git a/dist/badge/index.js b/dist/badge/index.js index 4a9ee17d..a520c274 100644 --- a/dist/badge/index.js +++ b/dist/badge/index.js @@ -1,9 +1,8 @@ import { VantComponent } from '../common/component'; VantComponent({ - relations: { - '../badge-group/index': { - type: 'ancestor' - } + relation: { + type: 'ancestor', + name: 'badge-group' }, props: { info: Number, diff --git a/dist/button/index.js b/dist/button/index.js index a601e740..0274d905 100644 --- a/dist/button/index.js +++ b/dist/button/index.js @@ -1,7 +1,8 @@ import { VantComponent } from '../common/component'; import { button } from '../mixins/button'; +import { openType } from '../mixins/open-type'; VantComponent({ - mixins: [button], + mixins: [button, openType], props: { plain: Boolean, block: Boolean, diff --git a/dist/button/index.wxml b/dist/button/index.wxml index 8d1be79a..8e99a568 100644 --- a/dist/button/index.wxml +++ b/dist/button/index.wxml @@ -1,5 +1,6 @@