VueJS 2 + ASP.NET MVC 5
I'm very new with VueJS. I have to build a single page application inside a ASP.NET MVC5. I follow this tutorial and works very well -> TUTORIAL But when i create a .vue page to test VueJS2 Routes, the browser does not understand "Import", i read that i have to use a transpiler like Babel, someone know how i solve it? App.VUE <template> <div id="app"> {{msg}} </div> </template> <script> export default { name: 'app', data () { return { msg: 'Welcome to Your Vue.js App' } } } </script> App.JS import Vue from 'vue' import App from './App.vue' new Vue({ el: '#app', router, render: h => h(App),