summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-03-27 21:00:50 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-04-09 17:27:04 +0300
commit532a4b033669497d972683320e3d1d6dde1943f6 (patch)
tree894243478cd356256b89d102425e1a6ac0174715 /src/main.js
parentd0d9215bbb3c5b56d682abffb5abb916ff9d4387 (diff)
downloadwebui-vue-532a4b033669497d972683320e3d1d6dde1943f6.tar.xz
Add generate CSR to SSL certificates page
Adds ability to generate, then download or copy a CSR from the GUI - Import FormTagsPlugin to use for alternate names field Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I060e8d7917a79dafbfb67c758f5baa4a36ab86ae
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
index 17fc50fa..7117c54d 100644
--- a/src/main.js
+++ b/src/main.js
@@ -15,6 +15,7 @@ import {
FormInputPlugin,
FormRadioPlugin,
FormSelectPlugin,
+ FormTagsPlugin,
LayoutPlugin,
LinkPlugin,
ListGroupPlugin,
@@ -60,6 +61,10 @@ Vue.use(BVConfigPlugin, {
BTable: {
headVariant: 'light',
footVariant: 'light'
+ },
+ BFormTags: {
+ tagVariant: 'primary',
+ addButtonVariant: 'link-primary'
}
});
Vue.use(CollapsePlugin);
@@ -70,6 +75,7 @@ Vue.use(FormGroupPlugin);
Vue.use(FormInputPlugin);
Vue.use(FormRadioPlugin);
Vue.use(FormSelectPlugin);
+Vue.use(FormTagsPlugin);
Vue.use(LayoutPlugin);
Vue.use(LayoutPlugin);
Vue.use(LinkPlugin);