├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc ├── .prettierignore ├── .prettierrc ├── .versionrc.json ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts ├── nuxt │ ├── index.ts │ └── plugin.ts ├── plugin.ts ├── transition.ts └── vite-env.d.ts ├── tests ├── ErrorComponent.vue ├── TestComponent.vue └── plugin.test.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.prettierrc -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.versionrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/nuxt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/src/nuxt/index.ts -------------------------------------------------------------------------------- /src/nuxt/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/src/nuxt/plugin.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/src/transition.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests/ErrorComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/tests/ErrorComponent.vue -------------------------------------------------------------------------------- /tests/TestComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/tests/TestComponent.vue -------------------------------------------------------------------------------- /tests/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/tests/plugin.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarkkkk/vue-view-transitions/HEAD/vite.config.ts --------------------------------------------------------------------------------