You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
472 B

3 years ago
<template>
<view class="u-tr">
2 years ago
<slot></slot>
3 years ago
</view>
</template>
<script>
/**
2 years ago
* tr 表格行标签
* @description 表格组件一般用于展示大量结构化数据的场景搭配<u-table>使用
* @tutorial https://www.uviewui.com/components/table.html
* @example <u-tr></u-tr>
3 years ago
*/
export default {
2 years ago
name: "u-tr",
3 years ago
}
</script>
<style lang="scss" scoped>
2 years ago
@import "../../libs/css/style.components.scss";
3 years ago
2 years ago
.u-tr {
@include vue-flex;
}
3 years ago
</style>