Is it possible to use directive preventing vue from render the template?
For example
<div v-prevent-render>{{ variable }}</div>
will show {{ variable }}
,
but not the value of variable
---update---
Actually, I was prepared to do some operations before render, not just to show the original text... When things done, I will use $mount or render.
So maybe what I need is kind of a render interceptor...