#
whycq
2024-11-28 248ef3ba3de9994dc83d2b36690542893f9fb6e6
uni_modules/uni-table/components/uni-tbody/uni-tbody.vue
New file
@@ -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>