├── .github └── workflows │ └── develop.yml ├── .gitignore ├── .vscode └── settings.json ├── CLI.md ├── CORE.md ├── DevTools.md ├── README.md ├── ROUTER.md ├── SSR.md ├── STATE_MANAGEMENT.md ├── package.json ├── patches └── json2md+1.7.0.patch ├── scripts └── updateReadme.js ├── template ├── next-template │ ├── .gitignore │ ├── README.md │ ├── components │ │ ├── head.js │ │ └── nav.js │ ├── next.config.js │ ├── package.json │ ├── pages │ │ └── index.js │ ├── static │ │ └── favicon.ico │ └── yarn.lock ├── nuxt-template │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── assets │ │ └── README.md │ ├── components │ │ ├── Logo.vue │ │ └── README.md │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ ├── middleware │ │ └── README.md │ ├── nuxt.config.js │ ├── package.json │ ├── pages │ │ ├── README.md │ │ └── index.vue │ ├── plugins │ │ └── README.md │ ├── static │ │ ├── README.md │ │ └── favicon.ico │ ├── store │ │ └── README.md │ ├── stylelint.config.js │ └── yarn.lock ├── react-template │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── serviceWorker.js │ │ └── setupTests.js │ └── yarn.lock └── vue-template │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── HelloWorld.vue │ └── main.js │ └── yarn.lock └── yarn.lock /.github/workflows/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/.github/workflows/develop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | 3 | output/* -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/CLI.md -------------------------------------------------------------------------------- /CORE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/CORE.md -------------------------------------------------------------------------------- /DevTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/DevTools.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/README.md -------------------------------------------------------------------------------- /ROUTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/ROUTER.md -------------------------------------------------------------------------------- /SSR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/SSR.md -------------------------------------------------------------------------------- /STATE_MANAGEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/STATE_MANAGEMENT.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/package.json -------------------------------------------------------------------------------- /patches/json2md+1.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/patches/json2md+1.7.0.patch -------------------------------------------------------------------------------- /scripts/updateReadme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/scripts/updateReadme.js -------------------------------------------------------------------------------- /template/next-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/.gitignore -------------------------------------------------------------------------------- /template/next-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/README.md -------------------------------------------------------------------------------- /template/next-template/components/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/components/head.js -------------------------------------------------------------------------------- /template/next-template/components/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/components/nav.js -------------------------------------------------------------------------------- /template/next-template/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/next.config.js -------------------------------------------------------------------------------- /template/next-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/package.json -------------------------------------------------------------------------------- /template/next-template/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/pages/index.js -------------------------------------------------------------------------------- /template/next-template/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/static/favicon.ico -------------------------------------------------------------------------------- /template/next-template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/next-template/yarn.lock -------------------------------------------------------------------------------- /template/nuxt-template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/.editorconfig -------------------------------------------------------------------------------- /template/nuxt-template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/.eslintrc.js -------------------------------------------------------------------------------- /template/nuxt-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/.gitignore -------------------------------------------------------------------------------- /template/nuxt-template/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/.prettierrc -------------------------------------------------------------------------------- /template/nuxt-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/README.md -------------------------------------------------------------------------------- /template/nuxt-template/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/assets/README.md -------------------------------------------------------------------------------- /template/nuxt-template/components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/components/Logo.vue -------------------------------------------------------------------------------- /template/nuxt-template/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/components/README.md -------------------------------------------------------------------------------- /template/nuxt-template/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/layouts/README.md -------------------------------------------------------------------------------- /template/nuxt-template/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/layouts/default.vue -------------------------------------------------------------------------------- /template/nuxt-template/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/middleware/README.md -------------------------------------------------------------------------------- /template/nuxt-template/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/nuxt.config.js -------------------------------------------------------------------------------- /template/nuxt-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/package.json -------------------------------------------------------------------------------- /template/nuxt-template/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/pages/README.md -------------------------------------------------------------------------------- /template/nuxt-template/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/pages/index.vue -------------------------------------------------------------------------------- /template/nuxt-template/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/plugins/README.md -------------------------------------------------------------------------------- /template/nuxt-template/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/static/README.md -------------------------------------------------------------------------------- /template/nuxt-template/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/static/favicon.ico -------------------------------------------------------------------------------- /template/nuxt-template/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/store/README.md -------------------------------------------------------------------------------- /template/nuxt-template/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/stylelint.config.js -------------------------------------------------------------------------------- /template/nuxt-template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/nuxt-template/yarn.lock -------------------------------------------------------------------------------- /template/react-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/.gitignore -------------------------------------------------------------------------------- /template/react-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/README.md -------------------------------------------------------------------------------- /template/react-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/package.json -------------------------------------------------------------------------------- /template/react-template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/public/favicon.ico -------------------------------------------------------------------------------- /template/react-template/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/public/index.html -------------------------------------------------------------------------------- /template/react-template/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/public/logo192.png -------------------------------------------------------------------------------- /template/react-template/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/public/logo512.png -------------------------------------------------------------------------------- /template/react-template/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/public/manifest.json -------------------------------------------------------------------------------- /template/react-template/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/public/robots.txt -------------------------------------------------------------------------------- /template/react-template/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/App.css -------------------------------------------------------------------------------- /template/react-template/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/App.js -------------------------------------------------------------------------------- /template/react-template/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/App.test.js -------------------------------------------------------------------------------- /template/react-template/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/index.css -------------------------------------------------------------------------------- /template/react-template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/index.js -------------------------------------------------------------------------------- /template/react-template/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/logo.svg -------------------------------------------------------------------------------- /template/react-template/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/serviceWorker.js -------------------------------------------------------------------------------- /template/react-template/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/src/setupTests.js -------------------------------------------------------------------------------- /template/react-template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/react-template/yarn.lock -------------------------------------------------------------------------------- /template/vue-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/.gitignore -------------------------------------------------------------------------------- /template/vue-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/README.md -------------------------------------------------------------------------------- /template/vue-template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/babel.config.js -------------------------------------------------------------------------------- /template/vue-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/package.json -------------------------------------------------------------------------------- /template/vue-template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/public/favicon.ico -------------------------------------------------------------------------------- /template/vue-template/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/public/index.html -------------------------------------------------------------------------------- /template/vue-template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/src/App.vue -------------------------------------------------------------------------------- /template/vue-template/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/src/assets/logo.png -------------------------------------------------------------------------------- /template/vue-template/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /template/vue-template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/src/main.js -------------------------------------------------------------------------------- /template/vue-template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/template/vue-template/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oahehc/react-vue-comparison/HEAD/yarn.lock --------------------------------------------------------------------------------