父组件调用子组件代码(关键字sync):
<importModel :visible.sync="dialogModelVisible"></importModel>
子组件修改父组件visible属性为false代码:
_this.$emit("update:visible", false);