平安校园
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.
 
 
 
 
 
 

30 lines
333 B

  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. virtualHost: true
  16. },
  17. data() {
  18. return {
  19. }
  20. },
  21. created() {},
  22. methods: {}
  23. }
  24. </script>
  25. <style>
  26. </style>