| 123456789101112131415161718192021 |
- <template>
- <div>
- <common-top />
- <nuxt />
- <Foo />
- </div>
- </template>
- <script>
- import CommonTop from '~/components/common-top'
- import Foo from '~/components/footer'
- export default {
- components: {
- CommonTop,
- Foo
- }
- }
- </script>
- <style>
- </style>
|