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/ConsultantList.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/PAMapp/components/Consultant/ConsultantList.vue b/PAMapp/components/Consultant/ConsultantList.vue
index a453231..90bd709 100644
--- a/PAMapp/components/Consultant/ConsultantList.vue
+++ b/PAMapp/components/Consultant/ConsultantList.vue
@@ -24,12 +24,12 @@
 
 <script lang="ts">
 import { Vue, Component, Prop } from 'nuxt-property-decorator';
-import { Consultants } from '~/assets/ts/models/consultant.model';
+import { Consultant } from '~/assets/ts/models/consultant.model';
 import { isLogin } from '~/assets/ts/auth';
 
 @Component
 export default class ConsultantList extends Vue {
-    @Prop() agents!: Consultants[];
+    @Prop() agents!: Consultant[];
 
     get isLogin() {
         return isLogin();

--
Gitblit v1.8.0