// 父组件中调用子组件:
<field ref="typeRef"></field>
在需要的地方直接用如下代码:
this.$refs['typeRef'].dialogVisible = true;
// 子组件调用父组件方法:
this.$parent.getList();