fix: add v-pre to pre tags at render time

This commit is contained in:
NGPixel 2021-03-11 19:23:24 -05:00
parent 919d7c12a1
commit 5ffa189383

View File

@ -261,6 +261,10 @@ module.exports = {
} }
iterateMustacheNode($.root()) iterateMustacheNode($.root())
$('pre').each((idx, elm) => {
$(elm).attr('v-pre', true)
})
// -------------------------------- // --------------------------------
// STEP: POST // STEP: POST
// -------------------------------- // --------------------------------