├── .gitignore ├── README.md ├── babel.config.js ├── capture.png ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── css │ │ └── tailwind.css │ └── logo.png ├── components │ ├── Dashboard.vue │ ├── Footer.vue │ ├── Navbar.vue │ └── Sidebar.vue ├── main.js ├── pages │ └── Home.vue └── store │ └── index.js └── tailwind.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | 9 | # Log files 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | 14 | # Editor directories and files 15 | .idea 16 | .vscode 17 | *.suo 18 | *.ntvs* 19 | *.njsproj 20 | *.sln 21 | *.sw? 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Vue-Tailwind - Admin Template 2 | A simple admin template built using [TailwindCSS](https://tailwindcss.com) & [Vue.js](https://vuejs.org). This project is also running [Vuex](https://vuex.vuejs.org) in order to control the sidebar state throughout components. 3 | 4 | 5 | #### Screenshot 6 |  7 | 8 | #### Project setup 9 | ``` 10 | npm install 11 | ``` 12 | 13 | #### Compiles and hot-reloads for development 14 | ``` 15 | npm run serve 16 | ``` 17 | 18 | #### License 19 | MIT License. 20 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armando99Rdz/admin-dashboard-vue-tailwind/ab30708949e03e998a52c0ac00450ed8cf788895/capture.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-tailwind-admin", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "serve": "vue-cli-service serve", 7 | "build": "vue-cli-service build", 8 | "lint": "vue-cli-service lint" 9 | }, 10 | "dependencies": { 11 | "chart.js": "^2.9.3", 12 | "core-js": "^3.6.4", 13 | "vue": "^2.6.11", 14 | "vue-chartjs": "^3.5.0", 15 | "vue-router": "^3.1.5", 16 | "vuex": "^3.1.2" 17 | }, 18 | "devDependencies": { 19 | "@vue/cli-plugin-babel": "^4.2.0", 20 | "@vue/cli-plugin-eslint": "^4.2.0", 21 | "@vue/cli-service": "^4.2.0", 22 | "babel-eslint": "^10.0.3", 23 | "eslint": "^6.7.2", 24 | "eslint-plugin-vue": "^6.1.2", 25 | "tailwindcss": "^1.2.0", 26 | "vue-template-compiler": "^2.6.11" 27 | }, 28 | "eslintConfig": { 29 | "root": true, 30 | "env": { 31 | "node": true 32 | }, 33 | "extends": [ 34 | "plugin:vue/essential", 35 | "eslint:recommended" 36 | ], 37 | "parserOptions": { 38 | "parser": "babel-eslint" 39 | }, 40 | "rules": {} 41 | }, 42 | "browserslist": [ 43 | "> 1%", 44 | "last 2 versions" 45 | ] 46 | } 47 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "plugins": [ 3 | require('tailwindcss')('tailwind.js'), 4 | require('autoprefixer')() 5 | ] 6 | } -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armando99Rdz/admin-dashboard-vue-tailwind/ab30708949e03e998a52c0ac00450ed8cf788895/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |© Copyright 2020
4 | 5 | 10 |Good afternoon, Joe!
20 | 21 |237
36 |Products Sold
37 |42
52 |Products Sold
53 |5
68 |Products Sold
69 |1,906
84 |Products Sold
85 |101 | Name 102 | | 103 |104 | Title 105 | | 106 |107 | Status 108 | | 109 |110 | Team 111 | | 112 |113 | |
---|---|---|---|---|
118 |
119 |
120 |
129 |
121 |
128 |
122 | Jane Cooper
123 |
124 |
125 | jane.cooper@example.com
126 |
127 | |
130 |
131 | Regional Paradigm Technician
132 | Optimization
133 | |
134 | 135 | 136 | Active 137 | 138 | | 139 |
140 |
141 |
147 | |
148 | 149 | Editar 150 | | 151 |
154 |
155 |
156 |
165 |
157 |
164 |
158 | Jane Cooper
159 |
160 |
161 | jane.cooper@example.com
162 |
163 | |
166 |
167 | Regional Paradigm Technician
168 | Optimization
169 | |
170 | 171 | 172 | Active 173 | 174 | | 175 |
176 |
177 |
183 | |
184 | 185 | Editar 186 | | 187 |
190 |
191 |
192 |
201 |
193 |
200 |
194 | Jane Cooper
195 |
196 |
197 | jane.cooper@example.com
198 |
199 | |
202 |
203 | Regional Paradigm Technician
204 | Optimization
205 | |
206 | 207 | 208 | Active 209 | 210 | | 211 |
212 |
213 |
217 | |
218 | 219 | Editar 220 | | 221 |
224 |
225 |
226 |
235 |
227 |
234 |
228 | Jane Cooper
229 |
230 |
231 | jane.cooper@example.com
232 |
233 | |
236 |
237 | Regional Paradigm Technician
238 | Optimization
239 | |
240 | 241 | 242 | Active 243 | 244 | | 245 |
246 |
247 |
253 | |
254 | 255 | Editar 256 | | 257 |
260 |
261 |
262 |
271 |
263 |
270 |
264 | Jane Cooper
265 |
266 |
267 | jane.cooper@example.com
268 |
269 | |
272 |
273 | Regional Paradigm Technician
274 | Optimization
275 | |
276 | 277 | 278 | Active 279 | 280 | | 281 |
282 |
283 |
286 | |
287 | 288 | Editar 289 | | 290 |
293 |
294 |
295 |
304 |
296 |
303 |
297 | Jane Cooper
298 |
299 |
300 | jane.cooper@example.com
301 |
302 | |
305 |
306 | Regional Paradigm Technician
307 | Optimization
308 | |
309 | 310 | 311 | Active 312 | 313 | | 314 |
315 |
316 |
322 | |
323 | 324 | Editar 325 | | 326 |
Recent Sales
340 | 341 |Recent Reviews
348 | 349 |Recent Transactions
356 |Jhon Doe
361 |Product XYZ-92
362 |Malcom
369 |Product XYZ-92
370 |Jhon Doe
377 |Product XYZ-92
378 |