Files

35 lines
449 B
Vue
Raw Permalink Normal View History

2022-08-01 08:14:57 +08:00
<template>
<!-- #ifdef H5 -->
<tbody>
<slot></slot>
</tbody>
<!-- #endif -->
<!-- #ifndef H5 -->
<view><slot></slot></view>
<!-- #endif -->
</template>
<script>
export default {
name: 'uniBody',
2025-03-25 16:58:54 +08:00
options: {
// #ifdef MP-TOUTIAO
virtualHost: false,
// #endif
// #ifndef MP-TOUTIAO
virtualHost: true
// #endif
2022-08-01 08:14:57 +08:00
},
data() {
return {
2025-03-25 16:58:54 +08:00
2022-08-01 08:14:57 +08:00
}
},
created() {},
methods: {}
}
</script>
<style>
</style>