123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <section id="intro">
- <div class="container">
- <div class="row">
- <div align="left" class="col-sm-12 col-md-8">
- <div class="intro-content box">
- <h2>Let us manage your property</h2>
- <p>
- Uni-Vate Properties found that there was a desperate need for a reputable source for
- buyers and sellers to turn to with their timeshare needs in South Africa.
- </p>
- <a href="#" class="btn-solid-blue">LIST YOUR PROPERTY WITH UNI-VATE PROPERTIES</a>
- <router-link v-if="!isLoggedIn" to="/user/login" class="btn-white-border"
- >LOGIN TO OWNERS PORTAL</router-link
- >
- </div>
- </div>
- </div>
- </div>
-
- <carousel
- :nav="false"
- :dots="false"
- :items="1"
- :autoplay="true"
- :loop="true"
- :autoHeight="true"
- id="intro-carousel"
- style="margin-top:-50px;"
- :responsive="{ 0: { items: 1, nav: false }, 600: { items: 1, nav: false } }"
- >
- <img class="item" src="/img/intro-carousel/home-1.jpg" alt="" />
- <img class="item" src="/img/intro-carousel/16.jpg" alt="" />
- <img class="item" src="/img/intro-carousel/comm-1.jpg" alt="" />
- <img class="item" src="/img/intro-carousel/comm-4.jpg" alt="" />
- <img class="item" src="/img/intro-carousel/3.jpg" alt="" />
- <img class="item" src="/img/intro-carousel/home-5.jpg" alt="" />
- </carousel>
-
- <div id="intro-carousel" class="owl-carousel"></div>
- </section>
- </template>
-
- <script>
- /* eslint-disable */
- import { mapState, mapActions } from "vuex";
- import Log from "../../assets/Log";
- import carousel from "vue-owl-carousel";
- export default {
- components: {
- carousel
- },
- computed: {
- ...mapState("authentication", ["user", "flag", "status", "person", "token"]),
- isLoggedIn() {
- console.log(Log.isLoggedIn());
- return Log.isLoggedIn();
- }
- }
- };
- </script>
-
- <style lang="scss" scoped></style>
|