home.vue 269 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <common-top />
  4. <nuxt />
  5. <Foo />
  6. </div>
  7. </template>
  8. <script>
  9. import CommonTop from '~/components/common-top'
  10. import Foo from '~/components/footer'
  11. export default {
  12. components: {
  13. CommonTop,
  14. Foo
  15. }
  16. }
  17. </script>
  18. <style>
  19. </style>