├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── babel.config.js ├── docs ├── css │ └── app.e3820176.css ├── favicon.ico ├── index.html └── js │ ├── 0.c3f23575.js │ ├── 0.c3f23575.js.map │ ├── 1.ca5a4bb4.js │ ├── 1.ca5a4bb4.js.map │ ├── 2.ec1b83af.js │ ├── 2.ec1b83af.js.map │ ├── app.8bd51b21.js │ ├── app.8bd51b21.js.map │ ├── chunk-vendors.49b782a4.js │ └── chunk-vendors.49b782a4.js.map ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── Api.js ├── App.vue ├── assets │ └── logo.png ├── components │ ├── FooterBar.vue │ ├── NavBar.vue │ └── SideBar.vue ├── layouts │ ├── Default.vue │ └── NoSidebar.vue ├── main.js ├── pages │ ├── 404.vue │ ├── About.vue │ ├── Home.vue │ ├── Photos.vue │ └── Post.vue └── router.js ├── vue.config.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ["@vue/app"] 3 | }; 4 | -------------------------------------------------------------------------------- /docs/css/app.e3820176.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/css/app.e3820176.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/0.c3f23575.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/0.c3f23575.js -------------------------------------------------------------------------------- /docs/js/0.c3f23575.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/0.c3f23575.js.map -------------------------------------------------------------------------------- /docs/js/1.ca5a4bb4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/1.ca5a4bb4.js -------------------------------------------------------------------------------- /docs/js/1.ca5a4bb4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/1.ca5a4bb4.js.map -------------------------------------------------------------------------------- /docs/js/2.ec1b83af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/2.ec1b83af.js -------------------------------------------------------------------------------- /docs/js/2.ec1b83af.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/2.ec1b83af.js.map -------------------------------------------------------------------------------- /docs/js/app.8bd51b21.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/app.8bd51b21.js -------------------------------------------------------------------------------- /docs/js/app.8bd51b21.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/app.8bd51b21.js.map -------------------------------------------------------------------------------- /docs/js/chunk-vendors.49b782a4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/chunk-vendors.49b782a4.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.49b782a4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/docs/js/chunk-vendors.49b782a4.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/public/index.html -------------------------------------------------------------------------------- /src/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/Api.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/FooterBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/components/FooterBar.vue -------------------------------------------------------------------------------- /src/components/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/components/NavBar.vue -------------------------------------------------------------------------------- /src/components/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/components/SideBar.vue -------------------------------------------------------------------------------- /src/layouts/Default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/layouts/Default.vue -------------------------------------------------------------------------------- /src/layouts/NoSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/layouts/NoSidebar.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/pages/404.vue -------------------------------------------------------------------------------- /src/pages/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/pages/About.vue -------------------------------------------------------------------------------- /src/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/pages/Home.vue -------------------------------------------------------------------------------- /src/pages/Photos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/pages/Photos.vue -------------------------------------------------------------------------------- /src/pages/Post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/pages/Post.vue -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/src/router.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkylmnx/Layout-system-with-vue-and-vue-router/HEAD/yarn.lock --------------------------------------------------------------------------------