- vs-input-class.ts
- german datetime format for date attributes in coverage class
This commit is contained in:
parent
265cfbcd30
commit
e3ea9847a3
7 changed files with 66 additions and 20 deletions
12
resources/js/search/text-search/vs-input-class.ts
Normal file
12
resources/js/search/text-search/vs-input-class.ts
Normal 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);
|
||||
}
|
||||
|
||||
}
|
|
@ -31,17 +31,17 @@
|
|||
</template>
|
||||
|
||||
|
||||
<script lange="ts">
|
||||
import Vue from "vue";
|
||||
import { Component, Provide } from "vue-property-decorator";
|
||||
<script lang="ts">
|
||||
// import Vue from "vue";
|
||||
// import { Component, Provide } from "vue-property-decorator";
|
||||
|
||||
@Component({})
|
||||
export default class VsInput extends Vue {
|
||||
term = "";
|
||||
bar = "bar";
|
||||
search() {
|
||||
//console.log(this.term);
|
||||
this.$emit("search", this.term);
|
||||
}
|
||||
}
|
||||
// @Component({})
|
||||
// export default class VsInput extends Vue {
|
||||
// term = "";
|
||||
// search() {
|
||||
// this.$emit("search", this.term);
|
||||
// }
|
||||
// }
|
||||
import VsInput from "./vs-input-class";
|
||||
export default VsInput;
|
||||
</script>
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue