├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── components └── MultiDrawer.vue ├── index.js ├── multi-drawer-demo.gif └── package.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-multi-drawer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-multi-drawer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-multi-drawer/HEAD/README.md -------------------------------------------------------------------------------- /components/MultiDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-multi-drawer/HEAD/components/MultiDrawer.vue -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-multi-drawer/HEAD/index.js -------------------------------------------------------------------------------- /multi-drawer-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-multi-drawer/HEAD/multi-drawer-demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-multi-drawer/HEAD/package.json --------------------------------------------------------------------------------