t-table
v1.1.7
Published
vue table component for mobile
Downloads
4
Readme
table组件
移动端table组件,支持左右固定列、排序
用法
npm install t-table --save
import TTable from "t-table"
Vue.use(TTable)
// or 通过<script src="./table.js"></script>
<t-table :data="data" height="300px" width="500px" header-height="30">
<t-table-column fixed width="120" prop="title" label="标题" sortable></t-table-column>
<t-table-column fixed width="120" label="#">
<template slot-scope="scope">
{{ scope.row.name }}: {{ scope.index }}
</template>
</t-table-column>
</t-table>