When using a self-closing tag in the included template, the slash is lost in the output, For example: `template.html`: ``` <div> <router-view /> </div> ``` `control.js`: ``` import template from './template.html'; ``` Result: ``` var template = "<div>\r\n <router-view>\r\n</div>"; ```