diff options
Diffstat (limited to 'viewer/src/components/LdProposition.vue')
-rw-r--r-- | viewer/src/components/LdProposition.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/components/LdProposition.vue b/viewer/src/components/LdProposition.vue index 7f6521f..375c482 100644 --- a/viewer/src/components/LdProposition.vue +++ b/viewer/src/components/LdProposition.vue | |||
@@ -49,14 +49,14 @@ | |||
49 | </template> | 49 | </template> |
50 | 50 | ||
51 | <script lang="ts"> | 51 | <script lang="ts"> |
52 | import { Component, Vue, Model, Prop } from "vue-property-decorator"; | 52 | import { Component, Vue, Prop, PropSync } from "vue-property-decorator"; |
53 | import { Operation } from "@/@types/Operation"; | 53 | import { Operation } from "@/@types/Operation"; |
54 | 54 | ||
55 | @Component | 55 | @Component |
56 | export default class LdProposition extends Vue { | 56 | export default class LdProposition extends Vue { |
57 | @Prop({ type: Array, required: true }) readonly currentTags!: string[]; | 57 | @Prop({ type: Array, required: true }) readonly currentTags!: string[]; |
58 | @Prop({ required: true }) readonly tagsIndex!: Tag.Index; | 58 | @Prop({ required: true }) readonly tagsIndex!: Tag.Index; |
59 | @Model() model!: Tag.Search[]; | 59 | @PropSync("searchFilters", { type: Array, required: true }) model!: Tag.Search[]; |
60 | 60 | ||
61 | get Operation() { | 61 | get Operation() { |
62 | return Operation; | 62 | return Operation; |