├── .babelrc ├── .editorconfig ├── .gitignore ├── README.md ├── demo ├── dist │ ├── build.js │ └── build.js.map ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── child.vue │ ├── main.js │ └── parent.vue └── webpack.config.js ├── dist ├── index.js └── index.js.map ├── package.json ├── src ├── index.js └── parent-change-transition.vue └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/README.md -------------------------------------------------------------------------------- /demo/dist/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/dist/build.js -------------------------------------------------------------------------------- /demo/dist/build.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/dist/build.js.map -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/src/App.vue -------------------------------------------------------------------------------- /demo/src/child.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/src/child.vue -------------------------------------------------------------------------------- /demo/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/src/main.js -------------------------------------------------------------------------------- /demo/src/parent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/src/parent.vue -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/src/index.js -------------------------------------------------------------------------------- /src/parent-change-transition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/src/parent-change-transition.vue -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamori/vue-parent-change-transition/HEAD/webpack.config.js --------------------------------------------------------------------------------