1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div class="activity_container">
- <Header></Header>
- <Activitycommon></Activitycommon>
- <Activityindex></Activityindex>
- <Footer></Footer>
- </div>
- </template>
- <script>
- import Header from '@/common/headers.vue'
- import Footer from '@/common/footer.vue'
- import Activitycommon from '@/components/resource/activitycommon.vue'
- import Activityindex from '@/components/resource/activityindex.vue'
- export default {
- components: {
- Header,
- Footer,
- Activitycommon,
- Activityindex
- },
- data() {
- return {
- }
- }
- }
- </script>
- <style>
- .activity_container {
- width: 100%;
- height: auto;
- background-color: #fff;
- }
- </style>
|