From 497f54b264eba626b77e79fec2ca6947ccae19e4 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期二, 14 十二月 2021 15:45:23 +0800 Subject: [PATCH] refactor: myAppointmentList --- PAMapp/components/Client/ClientList.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/Client/ClientList.vue b/PAMapp/components/Client/ClientList.vue index 8669ca7..11a77d1 100644 --- a/PAMapp/components/Client/ClientList.vue +++ b/PAMapp/components/Client/ClientList.vue @@ -17,11 +17,11 @@ <script lang='ts'> import { Vue, Component, Prop } from 'nuxt-property-decorator'; -import { Clients } from '~/pages/clientReservedList.vue'; +import { ClientInfo } from '~/assets/ts/api/appointment'; @Component export default class ClientList extends Vue { - @Prop() clients!: Clients[]; + @Prop() clients!: ClientInfo[]; @Prop() title!: string; } </script> -- Gitblit v1.8.0