25 | Edit src/App.tsx and save to test HMR
26 |
29 | Click on the Vite and React logos to learn more 30 |
31 | > 32 | ) 33 | } 34 | 35 | export default App 36 | -------------------------------------------------------------------------------- /vue-spa/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 |
15 | Edit
16 | components/HelloWorld.vue to test HMR
17 |
21 | Check out 22 | create-vue, the official Vue + Vite starter 25 |
26 |27 | Learn more about IDE Support for Vue in the 28 | Vue Docs Scaling up Guide. 33 |
34 |Click on the Vite and Vue logos to learn more
35 | 36 | 37 | 42 | -------------------------------------------------------------------------------- /api-c/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | 3 | namespace api_c.Controllers; 4 | 5 | [ApiController] 6 | [Route("[controller]")] 7 | public class WeatherForecastController : ControllerBase 8 | { 9 | private static readonly string[] Summaries = new[] 10 | { 11 | "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" 12 | }; 13 | 14 | private readonly ILogger