uni-cell.vue 292 B

12345678910111213141516171819
  1. <template>
  2. <!-- #ifdef APP-NVUE -->
  3. <cell>
  4. <slot />
  5. </cell>
  6. <!-- #endif -->
  7. <!-- #ifndef APP-NVUE -->
  8. <view>
  9. <slot />
  10. </view>
  11. <!-- #endif -->
  12. </template>
  13. <script>
  14. export default {
  15. name: 'UniCell',
  16. props: {}
  17. }
  18. </script>