gitextract_lv5soxqi/ ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── docs/ │ ├── css/ │ │ └── app.css │ ├── index.html │ └── js/ │ ├── app.js │ └── chunk-vendors.js ├── example/ │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public/ │ │ └── index.html │ ├── src/ │ │ ├── App.vue │ │ ├── components/ │ │ │ └── GithubRibbon.vue │ │ ├── main.ts │ │ ├── shims-tsx.d.ts │ │ └── shims-vue.d.ts │ ├── tsconfig.json │ └── vue.config.js ├── package.json ├── src/ │ └── index.ts └── tsconfig.json