gitextract_so7apu4r/ ├── .browserslistrc ├── .eslintrc.js ├── .github/ │ └── workflows/ │ └── docker-build-release.yml ├── .gitignore ├── .prettierrc.js ├── Dockerfile ├── LICENSE ├── README.md ├── babel.config.js ├── jsconfig.json ├── package.json ├── public/ │ ├── conf/ │ │ └── config.js │ └── index.html ├── src/ │ ├── App.vue │ ├── assets/ │ │ └── vendor/ │ │ └── css/ │ │ ├── pages/ │ │ │ ├── front-page-landing.css │ │ │ └── front-page.css │ │ └── rtl/ │ │ ├── core.css │ │ └── theme-default.css │ ├── components/ │ │ ├── dialog/ │ │ │ ├── DialogView.vue │ │ │ ├── button/ │ │ │ │ ├── BaseButton.vue │ │ │ │ ├── BaseButtonCancel.vue │ │ │ │ ├── ButtonDefault.vue │ │ │ │ ├── ButtonError.vue │ │ │ │ ├── ButtonSuccess.vue │ │ │ │ ├── ButtonWarning.vue │ │ │ │ ├── ConfirmDefault.vue │ │ │ │ ├── ConfirmError.vue │ │ │ │ ├── ConfirmSuccess.vue │ │ │ │ └── ConfirmWarning.vue │ │ │ ├── icon/ │ │ │ │ ├── error.vue │ │ │ │ ├── info.vue │ │ │ │ ├── success.vue │ │ │ │ └── warning.vue │ │ │ └── index.js │ │ ├── loading/ │ │ │ └── index.js │ │ └── notification/ │ │ └── index.js │ ├── layouts/ │ │ ├── LayoutView.vue │ │ └── main/ │ │ ├── MainLayout.vue │ │ ├── footer/ │ │ │ └── FooterBar.vue │ │ └── navbar/ │ │ ├── AppBrand.vue │ │ ├── NavBar.vue │ │ └── NavMenu.vue │ ├── main.js │ ├── network/ │ │ └── index.js │ ├── router/ │ │ └── index.js │ ├── store/ │ │ ├── index.js │ │ └── modules/ │ │ ├── app.js │ │ ├── menu.js │ │ ├── style.js │ │ └── styles/ │ │ └── main.js │ └── views/ │ └── home/ │ ├── HomeView.vue │ ├── SubTable.vue │ └── index.js ├── start.sh └── vue.config.js