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.
 
 
 

22 lines
310 B

<template>
<view class="content">
<view class="padding">
<notice/>
</view>
</view>
</template>
<script>
import notice from '@/pages/tabbar/index/comp/notice.vue'
export default {
components: {
notice
}
}
</script>
<style lang="scss" scoped>
.content {
padding-bottom: 80rpx;
}
</style>