lg_frontend/pages/video/list.vue

26 lines
596 B
Vue
Raw Normal View History

2024-07-01 14:53:31 +00:00
<script>
2024-08-06 14:30:41 +00:00
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";
2024-07-01 14:53:31 +00:00
export default {
2024-08-06 14:30:41 +00:00
name: "list",
components: {ModuleContent, FlexCol, NewBg, SystemTitle}
2024-07-01 14:53:31 +00:00
}
</script>
<template>
2024-08-06 14:30:41 +00:00
<new-bg>
<flex-col>
<system-title show-back custom-title="视频广场" />
<ModuleContent padding="0px 20px 20px">
</ModuleContent>
</flex-col>
</new-bg>
2024-07-01 14:53:31 +00:00
</template>
<style scoped lang="less">
</style>