activity_show.vue 491 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="activity_container">
  3. <Header></Header>
  4. <Activitycommon></Activitycommon>
  5. <Footer></Footer>
  6. </div>
  7. </template>
  8. <script>
  9. import Header from '@/common/headers.vue'
  10. import Footer from '@/common/footer.vue'
  11. import Activitycommon from '@/components/resource/activitycommon.vue'
  12. export default {
  13. components: {
  14. Header,
  15. Footer,
  16. Activitycommon,
  17. },
  18. data() {
  19. return {
  20. }
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>