@blueking/table
v0.0.1-beta.21
Published
蓝鲸 Table
Downloads
1,154
Readme
Vue3 版本
安装
npm i @blueking/table
使用
推荐用法
<template>
<Table :data="data">
<TableColumn label="第一列" field="first"></TableColumn>
<TableColumn label="第二列" field="second">
<template #default={data}>
{{ data.second }}
</template>
</TableColumn>
</Table>
</template>
<script setup>
import { ref } from 'vue'
import { Table, TableColumn } from '@blueking/table';
import('@blueking/table/vue3/vue3.css');
const data = ref([
{
first: '1111',
second: '2222'
},
{
first: 'aaaa',
second: 'bbbb'
},
]);
</script>