selector vue component

This commit is contained in:
Andrew Croce
2018-08-30 14:56:56 -04:00
parent 9d98b98b4e
commit ab77935cdc
2 changed files with 47 additions and 1 deletions

44
js/components/selector.js Normal file
View File

@@ -0,0 +1,44 @@
import { VPopover } from 'v-tooltip'
export default {
name: 'selector',
components: {
VPopover
},
props: {
choices: Array,
defaultLabel: String,
initialErrors: Array,
initialChoice: {
type: String,
default: null
}
},
data: function () {
return {
value: this.initialChoice || null,
showError: (this.initialErrors && this.initialErrors.length) || false
}
},
computed: {
label: function () {
return this.value
? this.choices.find((choice) => {
return this.value === choice[0]
})[1]
: this.defaultLabel
}
},
methods: {
change: function (e) {
this.value = e.target.value
this.showError = false
setTimeout(() => this.$refs.popover.hide(), 300)
}
},
}