Open geoidesic opened 2 years ago
Using the vuejs xhtml2pug plugin: This:
<!-- <q-item-label class="caption text-secondary t12">{{ item.caption }}</q-item-label> -->
... gets converted to this
// <q-item-label class="caption text-secondary t12">{{ item.caption }}</q-item-label>
I'm not vuejs user. Give me expected result, plz
Expected result should probably be:
// <q-item-label class="caption text-secondary t12">{{ // item.caption // }}</q-item-label>
Using the vuejs xhtml2pug plugin: This:
... gets converted to this