2019-10-07 10:24:30 -04:00
|
|
|
/**
|
|
|
|
* Default base for input components.
|
|
|
|
*/
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
context: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
type () {
|
|
|
|
return this.context.type
|
|
|
|
},
|
|
|
|
id () {
|
|
|
|
return this.context.id
|
|
|
|
},
|
|
|
|
attributes () {
|
|
|
|
return this.context.attributes || {}
|
|
|
|
},
|
|
|
|
hasValue () {
|
2019-10-08 23:54:16 -04:00
|
|
|
return !!this.context.model
|
2019-10-07 10:24:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|