7 ms·
According to petite-vue's readme, it supports the `v-cloak` directive [0], which is how vue recommends you hide the unprocessed template before it is mounted.
by JZumun 5y ago
According to petite-vue's readme, it supports the `v-cloak` directive [0], which is how vue recommends you hide the unprocessed template before it is mounted.
For more complicated logic, I think working with the @mounted event might work.
[0] https://v3.vuejs.org/api/directives.html#v-cloak https://v3.vuejs.org/api/directives.html#v-cloak
- midrus 5y agoMakes sense. Thanks!