summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorDixsie Wolmers <dixsie@ibm.com>2021-10-08 00:15:50 +0300
committerDixsie Wolmers <dixsiew@gmail.com>2021-12-03 23:45:37 +0300
commitc4b8757ed88ecea369e6044548d2fbe072d5bd4a (patch)
tree6999c7a29a7a3eea03f4a096ee827c8b18acc124 /src/main.js
parentcc79a53192de73457cb4c8c3350d896d952bb106 (diff)
downloadwebui-vue-c4b8757ed88ecea369e6044548d2fbe072d5bd4a.tar.xz
Network settings redesign - interface settings
First commit of the network settings redesign: - Adds the global network settings section for DHCP settings - Adds read only hostname, FQDN and MAC address, modal to edit each will be done seperately - Removes interface specific sections to refactor in next commit - Adds tab component to display ethernet data by interface - Ability to edit, delete and add ipv4 addresses and DNS will be done in separate commit Signed-off-by: Dixsie Wolmers <dixsie@ibm.com> Change-Id: Ibb1db6894ee697fec9e6ea1b8312d041c61faaad
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
index 8fcb8089..0aae716f 100644
--- a/src/main.js
+++ b/src/main.js
@@ -34,6 +34,7 @@ import {
PaginationPlugin,
ProgressPlugin,
TablePlugin,
+ TabsPlugin,
ToastPlugin,
TooltipPlugin,
} from 'bootstrap-vue';
@@ -123,6 +124,7 @@ Vue.use(NavPlugin);
Vue.use(PaginationPlugin);
Vue.use(ProgressPlugin);
Vue.use(TablePlugin);
+Vue.use(TabsPlugin);
Vue.use(ToastPlugin);
Vue.use(TooltipPlugin);
Vue.use(Vuelidate);