[Vuejs]-How to use vue-hot-reload-api with vue-router without vue-loader?

0👍

You can separate these files with this method:

<!-- my-component.vue -->
<template src="./my-component.html"></template>
<script src="./my-component.js"></script>
<style src="./my-component.css"></style>

Source: VueJS: What About Separation of Concerns?

Leave a comment