How to have Vue.js recognize Pug in a String template? Example:
Vue.component('my-component', {
template: `
div
div`})
I saw how this can be done in standalone templates, as in:
<template lang='pug'>
div
div
</template>
But I would like to be able to use pug in String templates.