<div id="app"> <el-button type="text" @click="dialogTableVisible = true">打開嵌套表格的 Dialog</el-button> <el-dialog id='dial' ref='dialog' title="收貨地址" v-model="dialogTableVisible"> <el-table ref='gr' :data='gridData' selection-change ='handleSelectionChange'> <el-table-column ref= 'col' type="selection" :selectable = "selection" width="55" ></el-table-column> <el-table-column property="date" label="日期" width="150"></el-table-column> <el-table-column property="name" label="姓名" width="200"></el-table-column> <el-table-column property="address" label="地址"></el-table-column> </el-table> </el-dialog></div>mounted : function () { console.log(this.$refs); console.log(this.$refs.gr); //提示undefined }
vue element ui 獲取el-dialog 下的 el-table 組件 使用
海綿寶寶撒
2018-11-20 17:15:48