├── .gitattributes ├── .gitignore ├── .npmignore ├── README-zh.md ├── README.md ├── _config.yml ├── bin └── meet.js ├── package.json ├── packages ├── commands │ ├── analysis.js │ ├── build.js │ ├── generate.js │ ├── generate │ │ ├── generate_native.js │ │ └── generate_vue_ssr.js │ ├── git.js │ ├── initial.js │ ├── start.js │ └── upload.js └── libs │ ├── filetype.js │ ├── meetyou.png │ ├── shellHelper.js │ ├── spinner.js │ └── utils.js ├── templates_no_framework ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── build │ ├── commands │ │ ├── build.js │ │ ├── ocstart.js │ │ └── upload.js │ ├── libs │ │ ├── aliupload.js │ │ ├── doupload.js │ │ ├── ip.js │ │ ├── qupload.js │ │ └── spinner.js │ ├── modules.js │ └── webpack │ │ ├── hot-reload-plugin.js │ │ └── webpack.config.js ├── client │ ├── common │ │ ├── css │ │ │ └── base.css │ │ └── js │ │ │ ├── flexible.js │ │ │ └── hot-reload.js │ └── demo │ │ ├── images │ │ └── 1.jpg │ │ ├── js │ │ ├── index.js │ │ └── index │ │ │ ├── business.js │ │ │ ├── service.js │ │ │ └── utils.js │ │ ├── styles │ │ └── index.css │ │ └── views │ │ └── index.html ├── mg.config.js ├── package.json ├── postcss.config.js ├── process.json ├── server │ ├── routes │ │ ├── demo.js │ │ └── index.js │ └── views │ │ ├── dev │ │ ├── demo │ │ │ └── index.html │ │ └── head.html │ │ ├── error.ejs │ │ ├── index.html │ │ └── prod │ │ └── head.html └── static │ └── readme.md └── templates_vue_ssr ├── module ├── app │ ├── app.js │ ├── components │ │ ├── App.vue │ │ ├── Bar.vue │ │ └── Foo.vue │ ├── index.css │ ├── index.html │ ├── service.js │ └── store.js ├── entry-client.js └── entry-server.js └── project ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── build ├── commands │ ├── build.js │ ├── ocstart.js │ └── upload.js ├── libs │ ├── aliupload.js │ ├── doupload.js │ ├── ip.js │ ├── qupload.js │ ├── spinner.js │ └── utils.js ├── modules-client.js ├── modules-server.js └── webpack │ ├── webpack.client.config.js │ └── webpack.server.config.js ├── client ├── common │ ├── css │ │ └── base.css │ └── js │ │ ├── commonUtils.js │ │ ├── flexible.js │ │ └── hot-reload.js └── demo │ └── index │ ├── app │ ├── app.js │ ├── components │ │ ├── App.vue │ │ ├── Bar.vue │ │ └── Foo.vue │ ├── index.css │ ├── index.html │ ├── service.js │ └── store.js │ ├── entry-client.js │ └── entry-server.js ├── mg.config.js ├── package.json ├── postcss.config.js ├── process.json ├── server ├── routes │ ├── demo.js │ └── index.js ├── ssr_code │ └── demo │ │ └── index-server.js └── views │ ├── dev │ ├── demo │ │ └── index.html │ └── head.html │ ├── error.ejs │ ├── index.html │ └── prod │ ├── demo │ └── index.html │ └── head.html └── static └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/.npmignore -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/meet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/bin/meet.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/package.json -------------------------------------------------------------------------------- /packages/commands/analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/analysis.js -------------------------------------------------------------------------------- /packages/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/build.js -------------------------------------------------------------------------------- /packages/commands/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/generate.js -------------------------------------------------------------------------------- /packages/commands/generate/generate_native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/generate/generate_native.js -------------------------------------------------------------------------------- /packages/commands/generate/generate_vue_ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/generate/generate_vue_ssr.js -------------------------------------------------------------------------------- /packages/commands/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/git.js -------------------------------------------------------------------------------- /packages/commands/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/initial.js -------------------------------------------------------------------------------- /packages/commands/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/start.js -------------------------------------------------------------------------------- /packages/commands/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/commands/upload.js -------------------------------------------------------------------------------- /packages/libs/filetype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/libs/filetype.js -------------------------------------------------------------------------------- /packages/libs/meetyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/libs/meetyou.png -------------------------------------------------------------------------------- /packages/libs/shellHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/libs/shellHelper.js -------------------------------------------------------------------------------- /packages/libs/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/libs/spinner.js -------------------------------------------------------------------------------- /packages/libs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/packages/libs/utils.js -------------------------------------------------------------------------------- /templates_no_framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/.gitignore -------------------------------------------------------------------------------- /templates_no_framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/LICENSE -------------------------------------------------------------------------------- /templates_no_framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/README.md -------------------------------------------------------------------------------- /templates_no_framework/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/app.js -------------------------------------------------------------------------------- /templates_no_framework/build/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/commands/build.js -------------------------------------------------------------------------------- /templates_no_framework/build/commands/ocstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/commands/ocstart.js -------------------------------------------------------------------------------- /templates_no_framework/build/commands/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/commands/upload.js -------------------------------------------------------------------------------- /templates_no_framework/build/libs/aliupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/libs/aliupload.js -------------------------------------------------------------------------------- /templates_no_framework/build/libs/doupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/libs/doupload.js -------------------------------------------------------------------------------- /templates_no_framework/build/libs/ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/libs/ip.js -------------------------------------------------------------------------------- /templates_no_framework/build/libs/qupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/libs/qupload.js -------------------------------------------------------------------------------- /templates_no_framework/build/libs/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/libs/spinner.js -------------------------------------------------------------------------------- /templates_no_framework/build/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/modules.js -------------------------------------------------------------------------------- /templates_no_framework/build/webpack/hot-reload-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/webpack/hot-reload-plugin.js -------------------------------------------------------------------------------- /templates_no_framework/build/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/build/webpack/webpack.config.js -------------------------------------------------------------------------------- /templates_no_framework/client/common/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/client/common/css/base.css -------------------------------------------------------------------------------- /templates_no_framework/client/common/js/flexible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/client/common/js/flexible.js -------------------------------------------------------------------------------- /templates_no_framework/client/common/js/hot-reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/client/common/js/hot-reload.js -------------------------------------------------------------------------------- /templates_no_framework/client/demo/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/client/demo/images/1.jpg -------------------------------------------------------------------------------- /templates_no_framework/client/demo/js/index.js: -------------------------------------------------------------------------------- 1 | import '../styles/index.css' -------------------------------------------------------------------------------- /templates_no_framework/client/demo/js/index/business.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates_no_framework/client/demo/js/index/service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates_no_framework/client/demo/js/index/utils.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates_no_framework/client/demo/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/client/demo/styles/index.css -------------------------------------------------------------------------------- /templates_no_framework/client/demo/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/client/demo/views/index.html -------------------------------------------------------------------------------- /templates_no_framework/mg.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/mg.config.js -------------------------------------------------------------------------------- /templates_no_framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/package.json -------------------------------------------------------------------------------- /templates_no_framework/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/postcss.config.js -------------------------------------------------------------------------------- /templates_no_framework/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/process.json -------------------------------------------------------------------------------- /templates_no_framework/server/routes/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/server/routes/demo.js -------------------------------------------------------------------------------- /templates_no_framework/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/server/routes/index.js -------------------------------------------------------------------------------- /templates_no_framework/server/views/dev/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/server/views/dev/demo/index.html -------------------------------------------------------------------------------- /templates_no_framework/server/views/dev/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/server/views/dev/head.html -------------------------------------------------------------------------------- /templates_no_framework/server/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/server/views/error.ejs -------------------------------------------------------------------------------- /templates_no_framework/server/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/server/views/index.html -------------------------------------------------------------------------------- /templates_no_framework/server/views/prod/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_no_framework/server/views/prod/head.html -------------------------------------------------------------------------------- /templates_no_framework/static/readme.md: -------------------------------------------------------------------------------- 1 | 存放静态资源,如静态html等 -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/app.js -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/components/App.vue -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/components/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/components/Bar.vue -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/components/Foo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/components/Foo.vue -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/index.css -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/index.html -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/service.js -------------------------------------------------------------------------------- /templates_vue_ssr/module/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/app/store.js -------------------------------------------------------------------------------- /templates_vue_ssr/module/entry-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/entry-client.js -------------------------------------------------------------------------------- /templates_vue_ssr/module/entry-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/module/entry-server.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/.gitignore -------------------------------------------------------------------------------- /templates_vue_ssr/project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/LICENSE -------------------------------------------------------------------------------- /templates_vue_ssr/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/README.md -------------------------------------------------------------------------------- /templates_vue_ssr/project/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/app.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/commands/build.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/commands/ocstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/commands/ocstart.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/commands/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/commands/upload.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/libs/aliupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/libs/aliupload.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/libs/doupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/libs/doupload.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/libs/ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/libs/ip.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/libs/qupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/libs/qupload.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/libs/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/libs/spinner.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/libs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/libs/utils.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/modules-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/modules-client.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/modules-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/modules-server.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/webpack/webpack.client.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/webpack/webpack.client.config.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/build/webpack/webpack.server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/build/webpack/webpack.server.config.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/common/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/common/css/base.css -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/common/js/commonUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/common/js/commonUtils.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/common/js/flexible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/common/js/flexible.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/common/js/hot-reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/common/js/hot-reload.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/app.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/components/App.vue -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/components/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/components/Bar.vue -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/components/Foo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/components/Foo.vue -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/index.css -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/index.html -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/service.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/app/store.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/entry-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/entry-client.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/client/demo/index/entry-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/client/demo/index/entry-server.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/mg.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/mg.config.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/package.json -------------------------------------------------------------------------------- /templates_vue_ssr/project/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/postcss.config.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/process.json -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/routes/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/routes/demo.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/routes/index.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/ssr_code/demo/index-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/ssr_code/demo/index-server.js -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/views/dev/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/views/dev/demo/index.html -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/views/dev/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/views/dev/head.html -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/views/error.ejs -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/views/index.html -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/views/prod/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/views/prod/demo/index.html -------------------------------------------------------------------------------- /templates_vue_ssr/project/server/views/prod/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiwei123/multipages-generator/HEAD/templates_vue_ssr/project/server/views/prod/head.html -------------------------------------------------------------------------------- /templates_vue_ssr/project/static/readme.md: -------------------------------------------------------------------------------- 1 | 存放静态资源,如静态html等 --------------------------------------------------------------------------------