Reputation: 823
I need to develop an application in ASP.NET MVC Core with Vue.js views.
How should I setup my application to work with both technologies?
Regards
Upvotes: 3
Views: 978
Reputation: 1
Vue supports both SPA and Non-SPA application development. https://github.com/mrityunjaya-kumar/AspNetCore-Vue-Starter provides a simple way of using ASP.NET core 2 + VueJS + Bootstrap-Vue for beginners.
For beginners, if you are interested in pure javascript development start with vue Javascript libraries only and then proceed with SPA app.
For SPA app, https://github.com/MarkPieszak/aspnetcore-Vue-starter is a nice starting point.
Upvotes: 0
Reputation: 4138
Assuming you want a beginner level approach and to develop a Vue spa application, I suggest you on using following boilerplate.
npm install -g yo generator-aspnetcore-spa
cd some-empty-directory
yo aspnetcore-spa
Select vue from the list
Upvotes: 1