Add basic support for active weather alerts

yikes nobody should stake their life on how well this works, but it
does seem to basically work..
This commit is contained in:
Lance Edgar 2024-06-08 23:16:29 -05:00
parent 7ed314b5bf
commit 0710f2238c
4 changed files with 134 additions and 2 deletions

View file

@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import WeatherView from '../views/WeatherView.vue'
import AlertsView from '../views/AlertsView.vue'
import HourlyView from '../views/HourlyView.vue'
import EditListView from '../views/EditListView.vue'
@ -17,6 +18,11 @@ const router = createRouter({
name: 'weather',
component: WeatherView,
},
{
path: '/alerts',
name: 'alerts',
component: AlertsView,
},
{
path: '/hourly',
name: 'hourly',