-
-
Notifications
You must be signed in to change notification settings - Fork 176
Open
Labels
awaiting triageThe issue is not reviewed by the maintainersThe issue is not reviewed by the maintainersbugSomething isn't workingSomething isn't working
Description
Describe the bug
When using @vuepic/vue-datepicker v12.0.5 with Nuxt 4.2.1 error for mismatch is thrown in the console:
"Hydration completed but contains mismatches."
To Reproduce
Steps to reproduce the behavior:
- Implement default date picker in Nuxt app
<template>
<VueDatePicker v-model="date"></VueDatePicker>
</template>
<script setup>
import { ref } from 'vue';
import { VueDatePicker } from '@vuepic/vue-datepicker';
import '@vuepic/vue-datepicker/dist/main.css'
const date = ref();
</script>
- Error about mismatch is thrown
Expected behavior
There should be no mismatch errors when using date picker with SSR
Screenshots

wokalek
Metadata
Metadata
Assignees
Labels
awaiting triageThe issue is not reviewed by the maintainersThe issue is not reviewed by the maintainersbugSomething isn't workingSomething isn't working