its not work with ssr, not usable in nuxtjs ssr
See original GitHub issue[Vue warn]: The client-side rendered virtual DOM tree is not matching server-rendered
content. This is likely caused by incorrect HTML markup, for example nesting block-level
elements inside <p>, or missing <tbody>. Bailing hydration and performing full client-side
render.
it has to be capable of ssr and nuxtjs as well.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:7
Top Results From Across the Web
Server Side Rendering - Nuxt
Server-side rendering (SSR), is the ability of an application to contribute by displaying the web-page on the server instead of rendering it in...
Read more >transition element not working in SSR Nuxt.js - Stack Overflow
hi! have you found any solution? I have the same problem, the component is not rendered on the server, if it is inside...
Read more >How to Configure SSG and SSR on Nuxt.js - Mad Devs
plugins — all the plugins that will be installed into the project must be in this folder. It is not obligatory, but it's...
Read more >Server-side rendering with Vue and Nuxt.js - LogRocket Blog
Learn about server-side rendering (SSR) and client-side rendering (CSR), ... to better handle these situations, it's not quite perfect yet.
Read more >Browser monitoring not working for a no-ssr nuxtjs app
We have a no-ssr nuxtjs app that we want to monitor with the browser monitoring integration. Cause we don't use server-side rendering we...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@MicroDreamIT import the library like this:
import Paginate from 'vuejs-paginate/src/components/Paginate'
Do not use client-only.
@MicroDreamIT you will have to conditionally require the lib too, instead of
import Paginate from 'vuejs-paginate'
use
const Paginate = process.client ? require('vuejs-paginate') : undefined