question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

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.

Screen-Shot-2019-08-12-at-2-31-53-AM

it has to be capable of ssr and nuxtjs as well.

Issue Analytics

  • State:open
  • Created 4 years ago
  • Reactions:4
  • Comments:7

github_iconTop GitHub Comments

5reactions
archieDevelopercommented, Jul 9, 2020

@MicroDreamIT import the library like this: import Paginate from 'vuejs-paginate/src/components/Paginate'

Do not use client-only.

5reactions
zgmrvncommented, Jan 29, 2020

@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

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found