-1👍
It seems that app.listen(port)
is missing in your app.js
file:
app.listen(3000)
- [Vuejs]-How to call ajax request one time to load data in multiple component instances
- [Vuejs]-Where should I instantiate my cart with PHPCart in Laravel 5?
-1👍
In controllers/csv.js
you never send a response. You should have a res.send
or res.render
or res.json
somewhere.
- [Vuejs]-Why is v-model not showing up? Need to show value when in edit mode on form
- [Vuejs]-How to assign json value to variable in Vue.js?
Source:stackexchange.com