lg_frontend/pages/video/list.vue

26 lines
596 B
Vue

<script>
import SystemTitle from "../../components/smallCommon/SystemTitle.vue";
import NewBg from "../../components/NewBg.vue";
import FlexCol from "../../components/FlexCol.vue";
import ModuleContent from "../../components/ModuleContent.vue";
export default {
name: "list",
components: {ModuleContent, FlexCol, NewBg, SystemTitle}
}
</script>
<template>
<new-bg>
<flex-col>
<system-title show-back custom-title="视频广场" />
<ModuleContent padding="0px 20px 20px">
</ModuleContent>
</flex-col>
</new-bg>
</template>
<style scoped lang="less">
</style>