Releases: Raiyee/vue-template-es2015-loader
Releases · Raiyee/vue-template-es2015-loader
Hot Reload Correctly
Hot Reload Enabled!
A big change of usage makes it possible to hot reload your template!
// old
export default {
...require('/your/template/path'),
// data, computed got here
}// new
export default require('/your/template/path')({
// data, computed got here
})compile template with `vue-loader/lib/template-compiler`
It is very simple but useful loader to help you handle template specifically without .vue.
However it doesn't support hot-reload.