template-project/pages/tabbar/project-list/project-list.vue

32 lines
479 B
Vue
Raw Normal View History

2022-03-28 10:40:02 +00:00
<template>
<view>
2022-04-07 10:14:28 +00:00
<notice-one direction="row"></notice-one>
2022-03-28 10:40:02 +00:00
<!-- 底部tab -->
<foot-tab :current="1"></foot-tab>
</view>
</template>
<script>
2022-04-07 10:14:28 +00:00
import noticeOne from '@/components/notices/notice-one/notice-one.vue';
2022-03-28 10:40:02 +00:00
// 底部组件
import footTabOne from '@/components/foot-tabs/foot-tab-one.vue';
export default {
components:{
2022-04-07 10:14:28 +00:00
'foot-tab' :footTabOne,
noticeOne
2022-03-28 10:40:02 +00:00
},
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>