123456789101112131415161718192021222324252627 |
- <template>
- <div class="activity_container">
- <Header></Header>
- <Activitycommon></Activitycommon>
- <Footer></Footer>
- </div>
- </template>
- <script>
- import Header from '@/common/headers.vue'
- import Footer from '@/common/footer.vue'
- import Activitycommon from '@/components/resource/activitycommon.vue'
- export default {
- components: {
- Header,
- Footer,
- Activitycommon,
- },
- data() {
- return {
-
- }
- }
- }
- </script>
- <style>
-
- </style>
|