How to use ASP.Net Boilerplate Modul Zero Vue.js template? How to use ASP.Net Boilerplate Modul Zero Vue.js template? vue.js vue.js

How to use ASP.Net Boilerplate Modul Zero Vue.js template?


I solved this problem as follows.

First, need to understand that when you debug/start a project in VisualStudio, only WebAPI starts. To start vue, you need installed Node.js, Yarn and following npm packages like so:

npm install -g webpack, vue-cli, babel-cli, babel-preset-env

If any packages are redundant, then tell me in comments.

After that, I started the project from VisualStudio and called following NPM commands in the console in vue folder npm install --save-dev. After this dependencies loaded to node_modules folder. At last run npm command npm run serve. Now vue available at URL http://localhost:8080.