广州网站建设招标,网站开发资源,深圳有哪些软件公司,wordpress添加关键词插件文章目录 1 父组件写法2 子组件写法 1 父组件写法
父组件参数和方法
data() {return {// 遮罩层loading: true,// 表格数据yfeList: []}}导入组件
import yfTable from /views/yf/yfTable.vue;组件
components: {yfTabTable},传值使用
yfTabTable :loadin… 文章目录 1 父组件写法2 子组件写法 1 父组件写法
父组件参数和方法
data() {return {// 遮罩层loading: true,// 表格数据yfeList: []}}导入组件
import yfTable from /views/yf/yfTable.vue;组件
components: {yfTabTable},传值使用
yfTabTable :loadingloading:yfListyfList:handleUpdatehandleUpdate/2 子组件写法
templateel-table v-loadingloading :datayfList el-table-column label操作 aligncenter class-namesmall-padding fixed-widthtemplate slot-scopescopeel-buttonsizeminitypetexticonel-icon-editclickhandleUpdate(scope.row)修改/el-button/template/el-table-column/el-table
/templatescript
export default {props:{// 遮罩层loading: true,// 管理表格数据注意添加type否则会报警告yfList: {type: Array,default: []},// 更新handleUpdate: {type: Function,default: null}}
}
/script