I have a plugin (bootstrap-vue) that I want to initialize with Vue.use(). Right now, I use it in the client entry (inside router.onReady()), but I get the following warning:
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.
I use server-side-rendering (SSR) and am not sure where to call the plugin initialization properly. Thanks!
Vue.use(yourPlugin)next to the entry point of your app.