合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
423 B

2 weeks ago
  1. <template>
  2. <!-- #ifdef H5 -->
  3. <tbody>
  4. <slot></slot>
  5. </tbody>
  6. <!-- #endif -->
  7. <!-- #ifndef H5 -->
  8. <view><slot></slot></view>
  9. <!-- #endif -->
  10. </template>
  11. <script>
  12. export default {
  13. name: 'uniBody',
  14. options: {
  15. // #ifdef MP-TOUTIAO
  16. virtualHost: false,
  17. // #endif
  18. // #ifndef MP-TOUTIAO
  19. virtualHost: true
  20. // #endif
  21. },
  22. data() {
  23. return {
  24. }
  25. },
  26. created() {},
  27. methods: {}
  28. }
  29. </script>
  30. <style>
  31. </style>