spring
2026-03-14 4b7cf12b4654c27ce84341261ab2c9832ce323f9
src/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue
对比新文件
@@ -0,0 +1,29 @@
<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>