From 1076fdc06d40646d1d6f125a3ce4d43cf4eac673 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期一, 06 十二月 2021 15:52:01 +0800 Subject: [PATCH] rename: change Consultants model to Consultant --- PAMapp/components/Consultant/ConsultantSwiper.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/Consultant/ConsultantSwiper.vue b/PAMapp/components/Consultant/ConsultantSwiper.vue index 7f01888..bacf1ca 100644 --- a/PAMapp/components/Consultant/ConsultantSwiper.vue +++ b/PAMapp/components/Consultant/ConsultantSwiper.vue @@ -28,12 +28,12 @@ <script lang="ts"> import { Vue, Component, Prop } from 'vue-property-decorator'; import { SwiperOptions } from 'swiper'; -import { Consultants } from '~/assets/ts/models/consultant.model'; +import { Consultant } from '~/assets/ts/models/consultant.model'; @Component export default class UiSwiper extends Vue { - @Prop() agents!: Consultants[]; + @Prop() agents!: Consultant[]; swiperOptions: SwiperOptions = { loop: false, -- Gitblit v1.8.0