Open 0xradical opened 4 years ago
On https://github.com/airbnb/hypernova-react/blob/master/src/index.js, parameters data and props (client & server, respectively) are basically the same thing.
The renderVue
works in the same way as renderReact
. However, for renderVuex
we need to save somewhere the Vuex store's state when the server-side rendered view is serialized in order to hydrate it on the client-side.
https://github.com/ara-framework/hypernova-vue/blob/master/src/server.ts#L55
This why we need to get the component's props from the propsData
key and use state
to hydrate the data for the store.
We plan to use another script tag to place the store's state when we're serializing the view, to avoid this workaround.
Hi Felipe! Nice lib!
I'm trying to understand why in clientside's renderVuex (defined on https://github.com/ara-framework/hypernova-vue/blob/master/src/index.ts#L100), you expect propsData to be encapsulated by a data key, but then on the serverside's renderVuex (https://github.com/ara-framework/hypernova-vue/blob/master/src/server.ts#L39) there's no such expectation.
Am I missing something ?
Thank you!