2022-08-24 15:01:04 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view class="u-tr">
|
2023-07-21 17:04:30 +08:00
|
|
|
|
<slot></slot>
|
2022-08-24 15:01:04 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
/**
|
2023-07-21 17:04:30 +08:00
|
|
|
|
* tr 表格行标签
|
|
|
|
|
|
* @description 表格组件一般用于展示大量结构化数据的场景(搭配<u-table>使用)
|
|
|
|
|
|
* @tutorial https://www.uviewui.com/components/table.html
|
|
|
|
|
|
* @example <u-tr></u-tr>
|
2022-08-24 15:01:04 +08:00
|
|
|
|
*/
|
|
|
|
|
|
export default {
|
2023-07-21 17:04:30 +08:00
|
|
|
|
name: "u-tr",
|
2022-08-24 15:01:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2023-07-21 17:04:30 +08:00
|
|
|
|
@import "../../libs/css/style.components.scss";
|
|
|
|
|
|
|
|
|
|
|
|
.u-tr {
|
|
|
|
|
|
@include vue-flex;
|
|
|
|
|
|
}
|
2022-08-24 15:01:04 +08:00
|
|
|
|
</style>
|