Home

Issue: 2508

NuxtServerInit may be have a major problem

[issue link]

Have a code

nuxtServerInit({ commit }){
    commit('setNumber', Math.random());
}

If there are two people at the same time online
Suppose they get 0.1 and 0.2 on the server
But they get the same value on the browser
When they use {{ number }}
They will show the same value
That is to compare the later one

This question is available on Nuxt.js community (#c2179)