flat: 暂存1

This commit is contained in:
Apcallover
2024-07-17 11:06:43 +08:00
parent 7d1904fa2c
commit 85aaeacd2b
57 changed files with 7565 additions and 170 deletions

View 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>