universal-vue / uvue

Vue CLI plugin to create universal Vue applications with ease
https://universal-vue.github.io/docs/
MIT License
127 stars 13 forks source link

(server) Fix syntax error in DATA #52

Closed cslee closed 4 years ago

cslee commented 4 years ago

What kind of change does this PR introduce? Fix syntax error in DATA

What is the current behavior? When a string in the state contains $&, it will be replaced with <div id="app"></div> in the __DATA__. String like $` and $' will become empty.

What is the new behavior? Escape all $ characters appear in state with jsonEncode

yabab-dev commented 4 years ago

Thanks !