選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

privacyPolicyPage.vue 420B

12345678910111213141516171819202122
  1. <template>
  2. <div>
  3. <carouselSection />
  4. <main id="main" style="margin-top:-20px;padding-bottom:50px">
  5. <contentSection />
  6. </main>
  7. </div>
  8. </template>
  9. <script>
  10. /* eslint-disable */
  11. import carouselSection from "./carouselSection";
  12. import contentSection from "./contentSection";
  13. export default {
  14. components: {
  15. carouselSection,
  16. contentSection
  17. }
  18. };
  19. </script>
  20. <style lang="scss" scoped></style>