'Bootstrap vue datepicker: value date shows outside input field
using veevalidate when I inspect it: the date shows in a label under the input
<b-form-datepicker
:name="el.label"
:ref="el.field"
v-if="el.type === 'date' || el.type ===
'datetime'"
v-model="value[el.field]"
:placeholder="el.placeholder"
v-validate="el.rules"
></b-form-datepicker>
Solution 1:[1]
I faced the same issue, I had not included the bootstrap-vue css. Issue was resolved after including below below css.
import "bootstrap-vue/dist/bootstrap-vue.css";
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Pandurang |
