Open srimanaravind opened 4 years ago
Try setting :inline="true" as such:
<VueTailWindPicker
:inline="true"
:init="false"
@change="(v) => (value = v)"
>
<input v-model="value" placeholder="Example initial value" />
</VueTailWindPicker>
That appears to make it always open.
I was able to use style="position: absolute" :z-index="999 - card.id"
for my case where I had many of them and they would get on top of each other.
Is there any option to set the z-index or "append to body" for this date picker? I can't find anything in the document,
Or anyone able to help me how to fix this issue?
@kenhyuwa