mall-app-t/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue

30 lines
361 B
Vue
Raw Permalink Normal View History

2024-05-22 15:42:13 +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>