- search input on home view component

This commit is contained in:
Arno Kaimbacher 2021-12-16 17:34:03 +01:00
parent 57ba2af299
commit 646f1b3843
8 changed files with 82 additions and 26 deletions

View file

@ -20,6 +20,10 @@ export default class VsInput extends Vue {
readonly placeholder!: string;
private display = "";
@Prop()
private propDisplay = "";
private value!: Suggestion | string;
private error = "";
private results: Array<Dataset> = [];