|
|
@ -1,5 +1,5 @@ |
|
|
|
<template> |
|
|
|
<div v-for="(item, index) in Butttondata" :key="index"> |
|
|
|
<div v-for="(item, index) in Butttondata" :key="index" class="btn-div"> |
|
|
|
<el-button |
|
|
|
v-show="!item.hide" |
|
|
|
:type="item.type" |
|
|
@ -81,4 +81,9 @@ defineExpose({ |
|
|
|
const updataTableColumns = (val) => { |
|
|
|
emit('updataTableColumns', val) |
|
|
|
} |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
|
|
.btn-div{ |
|
|
|
display: inline; |
|
|
|
} |
|
|
|
</style> |