├── VueMVC.sln └── VueMVC ├── .babelrc ├── .gitignore ├── App_Start ├── RouteConfig.cs └── WebApiConfig.cs ├── Controllers └── HomeController.cs ├── Global.asax ├── Global.asax.cs ├── Properties └── AssemblyInfo.cs ├── Scripts └── app │ ├── about │ └── index.js │ ├── home │ ├── FirstComponent.vue │ └── index.js │ └── layout │ └── index.js ├── Views ├── Home │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ └── _Layout.cshtml ├── Web.config └── _ViewStart.cshtml ├── VueMVC.csproj ├── Web.config ├── favicon.ico ├── package.json ├── packages.config └── webpack.config.js /VueMVC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC.sln -------------------------------------------------------------------------------- /VueMVC/.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2015"] } -------------------------------------------------------------------------------- /VueMVC/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/.gitignore -------------------------------------------------------------------------------- /VueMVC/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /VueMVC/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /VueMVC/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Controllers/HomeController.cs -------------------------------------------------------------------------------- /VueMVC/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="VueMVC.Global" %> 2 | -------------------------------------------------------------------------------- /VueMVC/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Global.asax.cs -------------------------------------------------------------------------------- /VueMVC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VueMVC/Scripts/app/about/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Scripts/app/about/index.js -------------------------------------------------------------------------------- /VueMVC/Scripts/app/home/FirstComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Scripts/app/home/FirstComponent.vue -------------------------------------------------------------------------------- /VueMVC/Scripts/app/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Scripts/app/home/index.js -------------------------------------------------------------------------------- /VueMVC/Scripts/app/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Scripts/app/layout/index.js -------------------------------------------------------------------------------- /VueMVC/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /VueMVC/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /VueMVC/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /VueMVC/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Views/Web.config -------------------------------------------------------------------------------- /VueMVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /VueMVC/VueMVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/VueMVC.csproj -------------------------------------------------------------------------------- /VueMVC/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/Web.config -------------------------------------------------------------------------------- /VueMVC/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/favicon.ico -------------------------------------------------------------------------------- /VueMVC/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/package.json -------------------------------------------------------------------------------- /VueMVC/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/packages.config -------------------------------------------------------------------------------- /VueMVC/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristijora/aspnet-vue-mvc/HEAD/VueMVC/webpack.config.js --------------------------------------------------------------------------------