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.

21 lines
310 B

4 months ago
  1. <template>
  2. <view class="content">
  3. <view class="padding">
  4. <notice/>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import notice from '@/pages/tabbar/index/comp/notice.vue'
  10. export default {
  11. components: {
  12. notice
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .content {
  18. padding-bottom: 80rpx;
  19. }
  20. </style>