Como usar o vue.js em expressjs com pug
script(type="text/x-template" id="my-component")
div
(html goes here)
script.
var MyComponent= Vue.component({
"template": '#my-component',
<rest of the code goes here>
});
Janos P