
these changes are all with Buefy "forms" support in mind. hopefully didn't break any legacy/jquery stuff... and yeah, lots more left to do still for the sake of Buefy forms
23 lines
437 B
JavaScript
23 lines
437 B
JavaScript
|
|
const TailboneTimepicker = {
|
|
|
|
template: [
|
|
'<b-timepicker',
|
|
':name="name"',
|
|
':id="id"',
|
|
'editable',
|
|
'placeholder="Click to select ..."',
|
|
'icon-pack="fas"',
|
|
'icon="clock"',
|
|
'hour-format="12"',
|
|
'>',
|
|
'</b-timepicker>'
|
|
].join(' '),
|
|
|
|
props: {
|
|
name: String,
|
|
id: String
|
|
}
|
|
}
|
|
|
|
Vue.component('tailbone-timepicker', TailboneTimepicker)
|