├── .github ├── dependabot.yml └── workflows │ └── semantic-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── components └── Navigator.js ├── index.js └── package.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-navigator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-navigator/HEAD/.github/workflows/semantic-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-navigator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-navigator/HEAD/README.md -------------------------------------------------------------------------------- /components/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-navigator/HEAD/components/Navigator.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-navigator/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-navigator/HEAD/package.json --------------------------------------------------------------------------------