Added app settings page (#15)

Closes: #11

Only setting available at the moment are for pytorch server .  But this is this easily expandable.

Signed-off-by: Justin Georgi <justin.georgi@gmail.com>

Reviewed-on: Georgi_Lab/ALVINN_f7#15
This commit is contained in:
2023-11-16 19:49:57 -07:00
parent 5912ea153c
commit 10d4047a6a
4 changed files with 86 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
import HomePage from '../pages/home.vue';
import AboutPage from '../pages/about.vue';
import SettingsPage from '../pages/settings.vue';
import DetectPage from '../pages/detect.vue';
import DynamicRoutePage from '../pages/dynamic-route.vue';
@@ -19,6 +20,10 @@ var routes = [
path: '/detect/:region/',
component: DetectPage,
},
{
path: '/settings/',
component: SettingsPage,
},
{