1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <template>
| <div>PAMapp-Home
| <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 {
|
| }
|
| </script>
|
|