Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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>