- vs-input-class.ts

- german datetime format for date attributes in coverage class
This commit is contained in:
Arno Kaimbacher 2019-10-23 19:04:54 +02:00
parent 265cfbcd30
commit e3ea9847a3
7 changed files with 66 additions and 20 deletions

View file

@ -0,0 +1,12 @@
import Vue from "vue";
import { Component, Provide } from "vue-property-decorator";
@Component({})
export default class VsInput extends Vue {
term = "";
search() {
this.$emit("search", this.term);
}
}