It is possible to handle Nuxt ssr using this library?
I don't really know...
After reading this, I don't think so: https://blog.lichter.io/posts/the-guide-to-write-universal-ssr-ready-vue-compon
If anyone could take a look at this and submit a PR would be great!
@Romick2005 from what i have played with i did get it to work by defining a plugin and then setting ssr to false. Refer to this https://vue-grid.glitch.me/
vue-grid-layout does not support SSR, so you must handling CSR
(using <no-ssr> tag and plugin with ssr: false option)
@Romick2005
@gmsa, maybe add this to README or wiki?
import Vue from 'vue';
import VueGridLayout from 'vue-grid-layout'
Vue.component('grid-layout', VueGridLayout.GridLayout);
Vue.component('grid-item', VueGridLayout.GridItem);
plugins: [
{src: '~/plugins/vue-grid', ssr: false},
],
<no-ssr></no-ssr>

Is there any other way ? i don't want use it in gobal .
@zlodes
Thanks so much. Still working for any who's interested.
@zlodes is this still working? I did the exact same thing as you did (except the no-ssr tag, that I replaced with client-only because of depreaction). I get 7 errors:
with Vue3 out now supporting SSR along with nuxt in talks of doing a Vue 3 version sometime in the future, are their plans on adding to this plugin to support SSR of any kind? If not then it should be posted here and this issue be closed instead of having an open issue talking about it since 2018 because it makes me think someone is actively working towards or planning to actively work towards SSR. (Just my two cents)
Is it possible for someone to create a demo project working with SSR? I've never used SSR and it would go a long way to help...
Most helpful comment
@Romick2005
@gmsa, maybe add this to README or wiki?