activity.vue 702 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="activity_container">
  3. <Header></Header>
  4. <Activitycommon></Activitycommon>
  5. <Activityindex></Activityindex>
  6. <Footer></Footer>
  7. </div>
  8. </template>
  9. <script>
  10. import Header from '@/common/headers.vue'
  11. import Footer from '@/common/footer.vue'
  12. import Activitycommon from '@/components/resource/activitycommon.vue'
  13. import Activityindex from '@/components/resource/activityindex.vue'
  14. export default {
  15. components: {
  16. Header,
  17. Footer,
  18. Activitycommon,
  19. Activityindex,
  20. },
  21. data() {
  22. return {
  23. }
  24. }
  25. }
  26. </script>
  27. <style>
  28. .activity_container {
  29. width: 100%;
  30. height: auto;
  31. background-color: #fff;
  32. }
  33. </style>