├── .babelrc ├── .editorconfig ├── .github └── workflows │ └── build-and-deploy.yml ├── .gitignore ├── .postcssrc.js ├── BACKERS.md ├── LICENSE ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── docs ├── index.html └── static │ ├── css │ ├── app.bd76ef92af2ee282961d007da01a20e8.css │ └── app.bd76ef92af2ee282961d007da01a20e8.css.map │ ├── fonts │ ├── MaterialIcons-Regular.016c14a.eot │ ├── MaterialIcons-Regular.55242ea.ttf │ ├── MaterialIcons-Regular.8a9a261.woff2 │ ├── MaterialIcons-Regular.c38ebd3.woff │ ├── fontawesome-webfont.674f50d.eot │ ├── fontawesome-webfont.af7ae50.woff2 │ ├── fontawesome-webfont.b06871f.ttf │ └── fontawesome-webfont.fee66e7.woff │ ├── img │ └── fontawesome-webfont.912ec66.svg │ ├── js │ ├── app.f2427fecb03f0525c73f.js │ ├── app.f2427fecb03f0525c73f.js.map │ ├── manifest.2ae2e69a05c33dfc65f8.js │ ├── manifest.2ae2e69a05c33dfc65f8.js.map │ ├── vendor.fa724d1dbc6f6f5b14fc.js │ └── vendor.fa724d1dbc6f6f5b14fc.js.map │ ├── logo.png │ ├── preview.JPG │ └── template.gif ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ ├── flags │ │ ├── ch.png │ │ ├── de.png │ │ ├── en.png │ │ ├── fr.png │ │ ├── ja.png │ │ └── tr.png │ └── logo.png ├── components │ ├── Carousel.vue │ ├── DataTable.vue │ ├── SocialWidget.vue │ ├── Statistic.vue │ ├── Stepper.vue │ ├── TimeLine.vue │ ├── UserTreeView.vue │ ├── Widget.vue │ ├── core │ │ ├── Breadcrumbs.vue │ │ ├── NavigationDrawer.vue │ │ ├── PageFooter.vue │ │ └── Toolbar.vue │ └── statistics │ │ ├── LocationStatistic.vue │ │ ├── SiteViewStatistic.vue │ │ └── TotalEarningsStatistic.vue ├── config │ ├── setup-components.js │ └── setup-i18n.js ├── i18n │ ├── ch.json │ ├── de.json │ ├── en.json │ ├── fr.json │ ├── ja.json │ └── tr.json ├── main.js ├── pages │ ├── Calendar.vue │ ├── Chart.vue │ ├── Dashboard.vue │ ├── Mailbox.vue │ ├── Media.vue │ ├── Snackbar.vue │ ├── Social.vue │ └── core │ │ ├── Error.vue │ │ └── Login.vue ├── router │ └── index.js └── styles │ └── global.css └── static ├── .gitkeep ├── logo.png ├── preview.JPG └── template.gif /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /BACKERS.md: -------------------------------------------------------------------------------- 1 |

Sponsors & Backers

2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/static/css/app.bd76ef92af2ee282961d007da01a20e8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/css/app.bd76ef92af2ee282961d007da01a20e8.css -------------------------------------------------------------------------------- /docs/static/css/app.bd76ef92af2ee282961d007da01a20e8.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/css/app.bd76ef92af2ee282961d007da01a20e8.css.map -------------------------------------------------------------------------------- /docs/static/fonts/MaterialIcons-Regular.016c14a.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/MaterialIcons-Regular.016c14a.eot -------------------------------------------------------------------------------- /docs/static/fonts/MaterialIcons-Regular.55242ea.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/MaterialIcons-Regular.55242ea.ttf -------------------------------------------------------------------------------- /docs/static/fonts/MaterialIcons-Regular.8a9a261.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/MaterialIcons-Regular.8a9a261.woff2 -------------------------------------------------------------------------------- /docs/static/fonts/MaterialIcons-Regular.c38ebd3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/MaterialIcons-Regular.c38ebd3.woff -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.674f50d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/fontawesome-webfont.674f50d.eot -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.af7ae50.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/fontawesome-webfont.af7ae50.woff2 -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.b06871f.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/fontawesome-webfont.b06871f.ttf -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.fee66e7.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/fonts/fontawesome-webfont.fee66e7.woff -------------------------------------------------------------------------------- /docs/static/img/fontawesome-webfont.912ec66.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/img/fontawesome-webfont.912ec66.svg -------------------------------------------------------------------------------- /docs/static/js/app.f2427fecb03f0525c73f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/js/app.f2427fecb03f0525c73f.js -------------------------------------------------------------------------------- /docs/static/js/app.f2427fecb03f0525c73f.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/js/app.f2427fecb03f0525c73f.js.map -------------------------------------------------------------------------------- /docs/static/js/manifest.2ae2e69a05c33dfc65f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/js/manifest.2ae2e69a05c33dfc65f8.js -------------------------------------------------------------------------------- /docs/static/js/manifest.2ae2e69a05c33dfc65f8.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/js/manifest.2ae2e69a05c33dfc65f8.js.map -------------------------------------------------------------------------------- /docs/static/js/vendor.fa724d1dbc6f6f5b14fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/js/vendor.fa724d1dbc6f6f5b14fc.js -------------------------------------------------------------------------------- /docs/static/js/vendor.fa724d1dbc6f6f5b14fc.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/js/vendor.fa724d1dbc6f6f5b14fc.js.map -------------------------------------------------------------------------------- /docs/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/logo.png -------------------------------------------------------------------------------- /docs/static/preview.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/preview.JPG -------------------------------------------------------------------------------- /docs/static/template.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/docs/static/template.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/assets/flags/ch.png -------------------------------------------------------------------------------- /src/assets/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/assets/flags/de.png -------------------------------------------------------------------------------- /src/assets/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/assets/flags/en.png -------------------------------------------------------------------------------- /src/assets/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/assets/flags/fr.png -------------------------------------------------------------------------------- /src/assets/flags/ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/assets/flags/ja.png -------------------------------------------------------------------------------- /src/assets/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/assets/flags/tr.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Carousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/Carousel.vue -------------------------------------------------------------------------------- /src/components/DataTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/DataTable.vue -------------------------------------------------------------------------------- /src/components/SocialWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/SocialWidget.vue -------------------------------------------------------------------------------- /src/components/Statistic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/Statistic.vue -------------------------------------------------------------------------------- /src/components/Stepper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/Stepper.vue -------------------------------------------------------------------------------- /src/components/TimeLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/TimeLine.vue -------------------------------------------------------------------------------- /src/components/UserTreeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/UserTreeView.vue -------------------------------------------------------------------------------- /src/components/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/Widget.vue -------------------------------------------------------------------------------- /src/components/core/Breadcrumbs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/core/Breadcrumbs.vue -------------------------------------------------------------------------------- /src/components/core/NavigationDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/core/NavigationDrawer.vue -------------------------------------------------------------------------------- /src/components/core/PageFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/core/PageFooter.vue -------------------------------------------------------------------------------- /src/components/core/Toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/core/Toolbar.vue -------------------------------------------------------------------------------- /src/components/statistics/LocationStatistic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/statistics/LocationStatistic.vue -------------------------------------------------------------------------------- /src/components/statistics/SiteViewStatistic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/statistics/SiteViewStatistic.vue -------------------------------------------------------------------------------- /src/components/statistics/TotalEarningsStatistic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/components/statistics/TotalEarningsStatistic.vue -------------------------------------------------------------------------------- /src/config/setup-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/config/setup-components.js -------------------------------------------------------------------------------- /src/config/setup-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/config/setup-i18n.js -------------------------------------------------------------------------------- /src/i18n/ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/i18n/ch.json -------------------------------------------------------------------------------- /src/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/i18n/de.json -------------------------------------------------------------------------------- /src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/i18n/en.json -------------------------------------------------------------------------------- /src/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/i18n/fr.json -------------------------------------------------------------------------------- /src/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/i18n/ja.json -------------------------------------------------------------------------------- /src/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/i18n/tr.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/Calendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/Calendar.vue -------------------------------------------------------------------------------- /src/pages/Chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/Chart.vue -------------------------------------------------------------------------------- /src/pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/Dashboard.vue -------------------------------------------------------------------------------- /src/pages/Mailbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/Mailbox.vue -------------------------------------------------------------------------------- /src/pages/Media.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/Media.vue -------------------------------------------------------------------------------- /src/pages/Snackbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/Snackbar.vue -------------------------------------------------------------------------------- /src/pages/Social.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/Social.vue -------------------------------------------------------------------------------- /src/pages/core/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/core/Error.vue -------------------------------------------------------------------------------- /src/pages/core/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/pages/core/Login.vue -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/preview.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/static/preview.JPG -------------------------------------------------------------------------------- /static/template.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihunlu/vue-admin-template/HEAD/static/template.gif --------------------------------------------------------------------------------