|
import { Vue, Component, Prop, Getter } from 'nuxt-property-decorator';
|
import { Consultant } from '~/assets/ts/models/consultant.model';
|
|
|
@Component
|
export default class ConsultantPage extends Vue {
|
@Prop() consultantList!: Consultant[];
|
@Getter isLogin!: boolean;
|
pageList: Consultant[] = [];
|
|
changePage(pageList: Consultant[]) {
|
this.pageList = pageList;
|
}
|
|
}
|