保誠-保戶業務員媒合平台
Mila
2021-10-19 1fcd604ad844352dd350ecda3ee870d69e3d85df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
    <div>首頁
        <Ui-Carousel></Ui-Carousel>
        <h5>推薦顧問</h5>
        <Ui-Swiper></Ui-Swiper>
    </div>
</template>
 
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator'
 
@Component({
    layout: 'home'
})
export default class MainComponent extends Vue {
    routerPush(path: string) {
        this.$router.push('/' + path);
    }
}
 
</script>