diff --git a/webapp/src/components/AboutView.vue b/webapp/src/components/AboutView.vue index 2d03659..85254b2 100644 --- a/webapp/src/components/AboutView.vue +++ b/webapp/src/components/AboutView.vue @@ -1,5 +1,7 @@ \ No newline at end of file diff --git a/webapp/src/components/HomeView.vue b/webapp/src/components/HomeView.vue index c4a8821..61c1951 100644 --- a/webapp/src/components/HomeView.vue +++ b/webapp/src/components/HomeView.vue @@ -1,5 +1,17 @@ \ No newline at end of file + + + \ No newline at end of file diff --git a/webapp/src/components/NavBar.vue b/webapp/src/components/NavBar.vue index 5914291..a827cc1 100644 --- a/webapp/src/components/NavBar.vue +++ b/webapp/src/components/NavBar.vue @@ -15,8 +15,27 @@ diff --git a/webapp/src/components/NetworkInfoView.vue b/webapp/src/components/NetworkInfoView.vue new file mode 100644 index 0000000..d2165c0 --- /dev/null +++ b/webapp/src/components/NetworkInfoView.vue @@ -0,0 +1,29 @@ + + + \ No newline at end of file diff --git a/webapp/src/components/partials/InterfaceApInfo.vue b/webapp/src/components/partials/InterfaceApInfo.vue new file mode 100644 index 0000000..96fe21f --- /dev/null +++ b/webapp/src/components/partials/InterfaceApInfo.vue @@ -0,0 +1,56 @@ + + + diff --git a/webapp/src/components/partials/InterfaceStationInfo.vue b/webapp/src/components/partials/InterfaceStationInfo.vue new file mode 100644 index 0000000..09398d0 --- /dev/null +++ b/webapp/src/components/partials/InterfaceStationInfo.vue @@ -0,0 +1,72 @@ + + + diff --git a/webapp/src/components/partials/WifiApInfo.vue b/webapp/src/components/partials/WifiApInfo.vue new file mode 100644 index 0000000..b6d4490 --- /dev/null +++ b/webapp/src/components/partials/WifiApInfo.vue @@ -0,0 +1,69 @@ + + + diff --git a/webapp/src/components/partials/WifiStationInfo.vue b/webapp/src/components/partials/WifiStationInfo.vue new file mode 100644 index 0000000..5c6c507 --- /dev/null +++ b/webapp/src/components/partials/WifiStationInfo.vue @@ -0,0 +1,73 @@ + + + diff --git a/webapp/src/router/index.js b/webapp/src/router/index.js index 95daf14..5e7b6b1 100644 --- a/webapp/src/router/index.js +++ b/webapp/src/router/index.js @@ -1,6 +1,7 @@ import { createWebHistory, createRouter } from 'vue-router'; import HomeView from '@/components/HomeView' import AboutView from '@/components/AboutView' +import NetworkInfoView from '@/components/NetworkInfoView' const routes = [ { @@ -12,6 +13,11 @@ const routes = [ path: '/about', name: 'About', component: AboutView + }, + { + path: '/info/network', + name: 'Network', + component: NetworkInfoView } ]; diff --git a/webapp/vue.config.js b/webapp/vue.config.js index 35190d0..b534aef 100644 --- a/webapp/vue.config.js +++ b/webapp/vue.config.js @@ -21,5 +21,8 @@ module.exports = defineConfig({ minRatio: 0.8, } } + }, + devServer: { + proxy: 'http://172.217.28.1/' } })