Basic app functions are working

definitely on the "minimal" side but this *mostly* covers my own usage
of the old mobile.weather.gov app
This commit is contained in:
Lance Edgar 2024-06-08 13:15:29 -05:00
parent 397b7b02e5
commit 5a584982e4
28 changed files with 2020 additions and 473 deletions

View file

@ -1,5 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import WeatherView from '../views/WeatherView.vue'
import HourlyView from '../views/HourlyView.vue'
import EditListView from '../views/EditListView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@ -9,6 +12,21 @@ const router = createRouter({
name: 'home',
component: HomeView
},
{
path: '/weather',
name: 'weather',
component: WeatherView,
},
{
path: '/hourly',
name: 'hourly',
component: HourlyView,
},
{
path: '/edit-list',
name: 'edit_list',
component: EditListView,
},
{
path: '/about',
name: 'about',