super-dop-table
v1.0.8
Published
表格和自定义搜索表单以及自定义操作栏按钮的组合组件super-dop-table——可简化代码、提高开发效率的封装elementUI for vue2
Downloads
8
Maintainers
Readme
super-dop-table
表格和自定义搜索表单以及自定义操作栏按钮的组合组件 super-dop-table——可简化代码、提高开发效率的封装elementUI for vue2
Install
npm i super-dop-table / yarn add super-dop-table
Usage
Use in the main:
import SuperDopTable from 'super-dop-table'
Vue.use(SuperDopTable)
Use in the page:
<template>
<div>
<SuperDopTable ref="superDopTable" tableType="1" labelPosition="top" :columns.sync="columns" :height="'auto'" rows-field="list" :table-config="{ stripe: false }" :renderHead="renderHead" row-key="id"
:multipleSelection.sync="multipleSelection" :api="getDataApi" />
</div>
</template>