| | |
| | | |
| | | <script lang="ts"> |
| | | import { Vue, Component, namespace } from 'nuxt-property-decorator'; |
| | | import { Consultant } from '~/assets/ts/models/consultant.model'; |
| | | import { fastQuery } from '~/assets/ts/api/consultant'; |
| | | import { questionList } from '~/assets/ts/const/quickFilter-questionList'; |
| | | import { FastQueryParams, QuestionOption, Selected } from '~/assets/ts/models/quickFilter.model'; |
| | | import { Consultant } from '~/shared/models/consultant.model'; |
| | | import { fastQuery } from '~/shared/api/consultant'; |
| | | import { questionList } from '~/shared/const/quickFilter-questionList'; |
| | | import { FastQueryParams, QuestionOption, Selected } from '~/shared/models/quickFilter.model'; |
| | | |
| | | const localStorage = namespace('localStorage'); |
| | | @Component |