el-table-prepend
v1.0.5
Published
Element ui el-table component append slot to table head
Downloads
423
Readme
el-table-prepend
为 el-table 添加一个前置插槽(prepend slot),方便在表头下方添加按钮等。
依赖要求
在使用 el-table-prepend 之前,请确保您的项目已安装以下依赖:
{
"element-ui": "^2.15.14",
"vue": "^2.6.10"
}安装
npm install el-table-prependUsage
<template>
<el-table-prepend>
<template #prepend>
<!-- Add contents here -->
</template>
</el-table-prepend>
</template>
<script>
import ElTablePrepend from 'el-table-prepend'
export default {
components: {
ElTablePrepend
}
}
</script>