You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it is not Nuxt's issue, I have tested in my own vue-ssr server without Nuxt, the problem is exsist still. but the that project is not on the github, so i paste the nuxt project's link here
the core code is like this:
<div :text="text">{{ text }}</div>
data () {
return {
text: ''
}
},
created () {
this.text = Vue.prototype.$isServer ? 'isServer' : 'isClient'
},
The text was updated successfully, but these errors were encountered:
I didn't say it, but next time please provide a real repro not a project you are testing things on. I created o bare foot Nuxt project to repro it and a correct minimal repro would have been what was provided at #9231
Version
2.6.10
Reproduction link
https://github.com/maunier/nuxt-learning
Steps to reproduce
npm install
npm run dev
http://127.0.0.1:8080/
What is expected?
i expect the div is like this:
What is actually happening?
but now it is:
it is not Nuxt's issue, I have tested in my own vue-ssr server without Nuxt, the problem is exsist still. but the that project is not on the github, so i paste the nuxt project's link here
the core code is like this:
The text was updated successfully, but these errors were encountered: