29 lines
333 B
29 lines
333 B
<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>
|
|
|