gitextract_2_g3etwt/ ├── .editorconfig ├── .eslintignore ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── cypress.json ├── package.json ├── public/ │ ├── googleee01dc033d7bbca2.html │ └── index.html ├── scripts/ │ └── demodeploy.sh ├── src/ │ ├── App.vue │ ├── components/ │ │ ├── menu/ │ │ │ ├── menudrawer.vue │ │ │ ├── menulist.vue │ │ │ ├── menulistitem.vue │ │ │ └── menulistitemex.vue │ │ ├── settings/ │ │ │ ├── colorschemeselector.vue │ │ │ └── settings.vue │ │ ├── tables/ │ │ │ ├── htable.vue │ │ │ ├── itable.vue │ │ │ └── ptable.vue │ │ └── user/ │ │ ├── message.vue │ │ ├── messages.vue │ │ └── userinfo.vue │ ├── dashboards/ │ │ ├── ChartJsShowcase.json │ │ ├── dashfive.json │ │ ├── dashfour.json │ │ ├── dashsix.json │ │ └── dashthree.json │ ├── data/ │ │ ├── ChartJsShowcase.json │ │ ├── api.json │ │ ├── apioperation.json │ │ ├── errors.json │ │ ├── hitsdata.json │ │ ├── iconsmdiv5.json │ │ ├── itemstabledata.json │ │ ├── ptabledata.json │ │ ├── requests.json │ │ └── summary.json │ ├── layouts/ │ │ └── mainlayout.vue │ ├── main.js │ ├── mixins/ │ │ ├── demodashboard.js │ │ └── vgtmethods.js │ ├── pages/ │ │ └── login.vue │ ├── quasar.js │ ├── router.js │ ├── store/ │ │ ├── modules/ │ │ │ └── layout.js │ │ └── store.js │ ├── styles/ │ │ ├── quasar.scss │ │ ├── quasar.variables.scss │ │ ├── textbgcolors.scss │ │ ├── ubbox.scss │ │ ├── ubcode.scss │ │ └── vgt.scss │ ├── utils.js │ └── views/ │ ├── About.vue │ ├── ChartJsShowcase.vue │ ├── DashblocksShowcase.vue │ ├── Dygraphs.vue │ ├── Home.vue │ ├── SampleDashboard.vue │ ├── apiop.vue │ ├── errors.vue │ ├── forms.vue │ ├── materialicons.vue │ ├── mdi.vue │ ├── observability.vue │ ├── quasartable.vue │ ├── requests.vue │ ├── summary.vue │ ├── tables.vue │ ├── timeline.vue │ ├── typography.vue │ └── vuegoodtable.vue ├── tests/ │ ├── e2e/ │ │ ├── .eslintrc.js │ │ ├── plugins/ │ │ │ └── index.js │ │ ├── specs/ │ │ │ └── test.js │ │ └── support/ │ │ ├── commands.js │ │ └── index.js │ └── unit/ │ └── .eslintrc.js └── vue.config.js