First test

This commit is contained in:
2023-01-14 15:37:59 +01:00
parent 6ee5c3d6ef
commit b68fdb31a7
14 changed files with 548 additions and 410 deletions

View File

@@ -0,0 +1,26 @@
<script>
export default {
props: {
value: {
type: String,
default: ""
}
},
computed: {
model: {
get() {
return this.value;
},
set(value) {
this.$emit("input", value);
}
}
}
};
</script>
<template>
<input type="text" v-model="model" placeholder="dummy input">
</template>