The Vue SSR guide is mainly written for running a nodejs server and just touches on using V8Js in the final chapter.
It does have a section on final state injection but this doesn't work in the context of V8Js.
How can we pass the Vuex state from server to client side when using V8Js?
First in
entry-server.jswe need to print not just the app, but also the Vuex state.And then in
entry-client.jswe need to populate the Vuex store with that data: