├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── Ebook.vue ├── assets │ ├── logo.png │ └── styles │ │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ │ ├── global.scss │ │ ├── icon.css │ │ └── reset.scss ├── components │ ├── Content.vue │ ├── HelloWorld.vue │ ├── MenuBar.vue │ └── TitleBar.vue ├── main.js └── router │ └── index.js └── static ├── .gitkeep └── 2018_Book_AgileProcessesInSoftwareEngine.epub /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/Ebook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/Ebook.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/styles/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/styles/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/assets/styles/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/styles/fonts/icomoon.svg -------------------------------------------------------------------------------- /src/assets/styles/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/styles/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/styles/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/styles/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/assets/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/styles/global.scss -------------------------------------------------------------------------------- /src/assets/styles/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/styles/icon.css -------------------------------------------------------------------------------- /src/assets/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/assets/styles/reset.scss -------------------------------------------------------------------------------- /src/components/Content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/components/Content.vue -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/MenuBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/components/MenuBar.vue -------------------------------------------------------------------------------- /src/components/TitleBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/components/TitleBar.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/src/router/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/2018_Book_AgileProcessesInSoftwareEngine.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam9831/free-ebook-demo/HEAD/static/2018_Book_AgileProcessesInSoftwareEngine.epub --------------------------------------------------------------------------------