[Vuejs]-Vue.js with System.js how to run a local example

2👍

I solved it , installing a lightweight web server

npm install -g live-server

then in the console, going to my app directory, I just run it

live-server

default browser is open with http://localhost:8080
bonus : hot reloading !

Leave a comment