coupon.vue 303 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="pages">
  3. <u-empty mode="coupon">
  4. </u-empty>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .pages{
  19. width: 100%;
  20. height: 100vh;
  21. background: #f5f5f5;
  22. }
  23. </style>