emersonbottero / vitepress-plugin-search

Provide local search to your documentation site.
MIT License
239 stars 30 forks source link

Hydration error on built pages due to teleported search form #23

Closed pdanpdan closed 1 year ago

pdanpdan commented 1 year ago

In Search.vue the form is using teleport without a check to be after mount

https://github.com/emersonbottero/vitepress-plugin-search/blob/74c5dda95db1a157353e732ea55fadee3bd86164/src/Search.vue#L116

<Teleport to="body"> should be guarded with a v-if="mounted" and that should be set to true in onMounted

emersonbottero commented 1 year ago

Oh. I'll fix It soon. Thanks you for the debugging