- add search components: vs-result.vue, vs-input.vue, facet-category.vue

- add search models
- add opensans font
- add bulma css framework
- add axios, rxjs, vue-property-decorator
- npm updates
This commit is contained in:
Arno Kaimbacher 2021-11-12 10:13:22 +01:00
commit 156bf0ae26
30 changed files with 4937 additions and 2044 deletions

10
src/api/config.ts Normal file
View file

@ -0,0 +1,10 @@
import { AxiosRequestConfig } from "axios";
import * as qs from "qs";
export const axiosRequestConfiguration: AxiosRequestConfig = {
responseType: "text",
headers: {
"Content-Type": "application/json",
},
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
};