forked from geolba/tethys.frontend
- add vue-facing-decorator (replace vue-class-component and vue-property-decorator)
- npm updates (stabele axios version) + adaption in axios config - remove maps route from src/router/index.ts
This commit is contained in:
parent
82872bf3fb
commit
5603614045
26 changed files with 1288 additions and 1797 deletions
|
@ -1,9 +1,9 @@
|
|||
import { FacetItem } from "@/models/headers";
|
||||
// import { FilterItem } from "@/models/solr";
|
||||
import { Options, Vue } from "vue-class-component";
|
||||
import { Prop, Emit } from "vue-property-decorator";
|
||||
import { Component, Vue, Prop, Emit } from "vue-facing-decorator";
|
||||
// import { Prop, Emit } from "vue-property-decorator";
|
||||
|
||||
@Options({
|
||||
@Component({
|
||||
name: "FacetCategory",
|
||||
})
|
||||
export default class FacetCategory extends Vue {
|
||||
|
@ -14,7 +14,10 @@ export default class FacetCategory extends Vue {
|
|||
@Prop()
|
||||
facetItems!: Array<FacetItem>;
|
||||
|
||||
@Prop([String])
|
||||
// @Prop([String])
|
||||
@Prop({
|
||||
type: String,
|
||||
})
|
||||
filterName!: string;
|
||||
|
||||
get alias(): string {
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue