You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

listPropertyPage.vue 281B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <main id="main">
  4. <contentSection />
  5. </main>
  6. </div>
  7. </template>
  8. <script>
  9. /* eslint-disable */
  10. import contentSection from "./contentSection";
  11. export default {
  12. components: {
  13. contentSection
  14. }
  15. };
  16. </script>
  17. <style lang="scss" scoped></style>