[Vuejs]-ASP.NET Core SPA Vue Template vs Vue CLI

0đź‘Ť

âś…

If by “on different servers” you mean that the Vue application is hosted on a different server than your API, then I don’t believe there is any advantage that you’d have by using the Visual Studio templates. The templates are designed to contain the two projects (client-side and API) into one, so that the development and deployment of both can be done together.

So if you’re planning on deploying your .NET API and Vue application to different servers, then you’d probably leave the SPA configuration out of your .NET app, hence no need for the template.

Leave a comment