12345678910111213141516171819202122 |
- <template>
- <div>
- <carouselSection />
- <main id="main" style="margin-top:-20px;padding-bottom:50px">
- <contentSection />
- </main>
- </div>
- </template>
-
- <script>
- /* eslint-disable */
- import carouselSection from "./carouselSection";
- import contentSection from "./contentSection";
- export default {
- components: {
- carouselSection,
- contentSection
- }
- };
- </script>
-
- <style lang="scss" scoped></style>
|