32 lines
479 B
Vue
32 lines
479 B
Vue
<template>
|
|
<view>
|
|
<notice-one direction="row"></notice-one>
|
|
<!-- 底部tab -->
|
|
<foot-tab :current="1"></foot-tab>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import noticeOne from '@/components/notices/notice-one/notice-one.vue';
|
|
// 底部组件
|
|
import footTabOne from '@/components/foot-tabs/foot-tab-one.vue';
|
|
export default {
|
|
components:{
|
|
'foot-tab' :footTabOne,
|
|
noticeOne
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|