├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── logo.png │ └── logo.svg ├── components │ ├── EmployeesTable.vue │ ├── EventTimeline.vue │ ├── HelloWorld.vue │ ├── SalesGraph.vue │ └── StatisticCard.vue ├── data │ ├── employees.json │ ├── sales.json │ ├── statistics.json │ └── timeline.json ├── main.js ├── plugins │ └── vuetify.js ├── router.js ├── scss │ └── variables.scss └── views │ ├── About.vue │ ├── Dashboard.vue │ ├── Home.vue │ ├── Login.vue │ └── Signup.vue └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@vue/app'] 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/EmployeesTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/components/EmployeesTable.vue -------------------------------------------------------------------------------- /src/components/EventTimeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/components/EventTimeline.vue -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/SalesGraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/components/SalesGraph.vue -------------------------------------------------------------------------------- /src/components/StatisticCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/components/StatisticCard.vue -------------------------------------------------------------------------------- /src/data/employees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/data/employees.json -------------------------------------------------------------------------------- /src/data/sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/data/sales.json -------------------------------------------------------------------------------- /src/data/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/data/statistics.json -------------------------------------------------------------------------------- /src/data/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/data/timeline.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/router.js -------------------------------------------------------------------------------- /src/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/scss/variables.scss -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/views/Dashboard.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/views/Login.vue -------------------------------------------------------------------------------- /src/views/Signup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/src/views/Signup.vue -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/beautify-with-vuetify/HEAD/yarn.lock --------------------------------------------------------------------------------