Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In SSR mode, v-html always rerender #12929

Open
AlexBergal opened this issue Jan 15, 2023 · 0 comments
Open

In SSR mode, v-html always rerender #12929

AlexBergal opened this issue Jan 15, 2023 · 0 comments

Comments

@AlexBergal
Copy link

Version

2.7.14

Reproduction link

gist.github.com

Steps to reproduce

app.vue

<template lang="html">
  <div>
    <div v-html="content"></div>
  </div>
</template>

<script>
export default {
  data () {
    return {
      content: '<p>hello</p>'
    }
  }
}
</script>

What is expected?

do not re-render component

What is actually happening?

component re-render with same content


Used with Quasar

  • mode.......... ssr
  • Pkg quasar........ v1.22.5
  • Pkg @quasar/app... v2.4.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant