// 1、新增对话框
<el-dialog title="新增部门" width="700px" :visible.sync="show">
// 2、隐藏对话框
show: false
// 3、导入注册使用新增对话框组件
// 使用
<!-- 新增弹框组件 -->
<Add ref="add" />
// 导入
import Add from './components/add'
// 注册
components: {
Add
}
// 4、打开对话框
this.$refs.add.show = true
标签:对话框,show,新增,add,弹框,点击,components,Add
From: https://www.cnblogs.com/strundent/p/16891012.html