Basically I want to add Vuejs (newest) to already existing ASP .NET Core 2.0 MVC project and then return Views from endpoints like /test, where those Views are using Vue scripts from wwwroot/js
So far I tried:
dotnet new --install Microsoft.AspNetCore.SpaTemplates::*
dotnet new vue
But I'd really want to have an empty project, as minimal amount of "js-not-wrtten-by-me" in project.
Thanks in advance.
PS: If I want to create content dynamically, then using endpoints via Controller isn't proper way to do that?