This commit is contained in:
syuilo 2019-05-06 20:09:13 +09:00
parent 3dde561fe5
commit 187792dfc4
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 9 additions and 8 deletions

View File

@ -5,10 +5,9 @@
<span class="label" ref="label"><slot name="label"></slot></span>
<div class="prefix" ref="prefix"><slot name="prefix"></slot></div>
<select ref="input"
:value="v"
v-model="v"
:required="required"
:disabled="disabled"
@input="$emit('input', $event.target.value)"
@focus="focused = true"
@blur="focused = false"
>
@ -56,18 +55,20 @@ export default Vue.extend({
},
data() {
return {
v: this.value,
focused: false
};
},
computed: {
filled(): boolean {
return this.v != '' && this.v != null;
v: {
get() {
return this.value;
},
set(v) {
this.$emit('input', v);
}
},
watch: {
value(v) {
this.v = v;
filled(): boolean {
return this.v != '' && this.v != null;
}
},
mounted() {