blob: 06aed4a59d79be529853e7f9b262812d71f016d6 [file] [log] [blame]
guangchao.xu070005a2020-12-07 09:56:40 +08001<template>
2 <view class="u-tr">
3 <slot></slot>
4 </view>
5</template>
6
7<script>
8 /**
9 * tr 表格行标签
10 * @description 表格组件一般用于展示大量结构化数据的场景(搭配<u-table>使用)
11 * @tutorial https://www.uviewui.com/components/table.html
12 * @example <u-tr></u-tr>
13 */
14 export default {
15 name: "u-tr",
16 }
17</script>
18
19<style lang="scss" scoped>
20 @import "../../libs/css/style.components.scss";
21
22 .u-tr {
23 @include vue-flex;
24 }
25</style>