alexjoverm / v-runtime-template

Vue component for compiling templates on the fly using a v-html like API
MIT License
605 stars 70 forks source link

Always updating the dom #29

Closed alexyalinc closed 5 years ago

alexyalinc commented 5 years ago

Constantly updates the entire dom in the v-runtime-template component itself. When you change the state in this component. Is it possible to solve this problem?

alexjoverm commented 5 years ago

I don't think that's possible since this is a dynamically compiled component, so it loses its tree dom update detection.

alexyalinc commented 5 years ago

@alexjoverm Thanks for the answer