| | |
| | | |
| | | <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'; |
| | | |
| | | |
| | | @Component |
| | | export default class ContactedList extends Vue { |
| | | @Prop() contactedList!: Consultants[]; |
| | | pageList: Consultants[] = []; |
| | | @Prop() contactedList!: Consultant[]; |
| | | pageList: Consultant[] = []; |
| | | |
| | | changePage(pageList: Consultants[]) { |
| | | changePage(pageList: Consultant[]) { |
| | | this.pageList = pageList; |
| | | } |
| | | } |