更新记录
1.0.0(2024-03-18) 下载此版本
简单的table组件,比unitable好用
平台兼容性
yyl-table
支持自定义样式
支持排序
使用方式
<template>
<view>
<table :columns="columns" :data="data"></table>
</view>
</template>
<script>
import Table from '@/components/Table'
export default {
components: {
Table
},
data() {
return {
columns: ['Name', 'Age', 'Email'],
data: [
['John', 25, 'john@example.com'],
['Jane', 30, 'jane@example.com'],
['Tom', 35, 'tom@example.com']
]
}
}
}
</script>