martial-arts/pages/tabbar/vedio/vedio.vue

36 lines
509 B
Vue
Raw Normal View History

2022-08-01 09:03:10 +00:00
<template>
<view>
<status-container :ifReturn="false" titlet="视频列表">
<view slot="content">
</view>
</status-container>
<!-- 底部tab -->
<foot-tab current="3"></foot-tab>
</view>
</template>
<script>
// 底部组件
import footTab from '@/components/foot-tabs/foot-tab.vue';
export default {
components:{
'foot-tab' :footTab,
},
data() {
return {
dataList:[],
ifloading:false,
flag:true
}
},
methods: {
}
}
</script>
<style>
</style>