pnkx-admin-mongo/pnkx-uniapp/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue

31 lines
449 B
Vue
Raw Normal View History

2024-01-13 13:29:20 +08:00
<template>
<!-- #ifdef H5 -->
<tbody>
<slot></slot>
</tbody>
<!-- #endif -->
<!-- #ifndef H5 -->
<view>
<slot></slot>
</view>
<!-- #endif -->
</template>
<script>
export default {
name: 'uniBody',
options: {
virtualHost: true
},
data() {
return {}
},
created() {
},
methods: {}
}
</script>
<style>
</style>