gitextract_kaf1xz4h/ ├── .browserslistrc ├── .circleci/ │ └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── deploy.sh ├── docs/ │ ├── .vuepress/ │ │ ├── components/ │ │ │ ├── BasicFiltering.vue │ │ │ ├── CustomFiltering.vue │ │ │ ├── InputSpinner.vue │ │ │ ├── Pagination.vue │ │ │ ├── Selection.vue │ │ │ ├── SelectionApi.vue │ │ │ ├── Sorting.vue │ │ │ ├── SortingFA.vue │ │ │ ├── TheBasics.vue │ │ │ └── data.json │ │ └── config.js │ ├── README.md │ ├── filtering/ │ │ └── README.md │ ├── pagination/ │ │ └── README.md │ ├── selection/ │ │ └── README.md │ ├── sorting/ │ │ └── README.md │ └── the-basics/ │ └── README.md ├── package.json ├── postcss.config.js ├── src/ │ ├── SmartPagination.vue │ ├── VTable.vue │ ├── VTh.vue │ ├── VTr.vue │ ├── main.js │ ├── store.js │ └── table-utils.js └── tests/ └── unit/ ├── .eslintrc.js └── table-utils.spec.js