vue 组件间数据传递
2019-02-17 本文已影响0人
轩轩小王子
1.子组件通知父组件
this.$emit('resetInputValue', this.searchCondition);
2.父组件
<my-filter-form @resetInputValue="onReset"></my-filter-form>
3.父组件向子组件 传参数
<my-page :totalPage="tableList.length" v-show="tableList.length >= 10" :pageSize="selectedListOnePageSize" ></my-page>