├── .gitignore
├── README.md
├── babel.config.js
├── package-lock.json
├── package.json
├── public
├── favicon.ico
└── index.html
├── src
├── App.vue
├── assets
│ ├── logo.png
│ └── logo.svg
├── components
│ ├── HelloWorld.vue
│ ├── SideBar.vue
│ └── SideBarRight.vue
├── main.js
├── plugins
│ └── vuetify.js
├── router
│ └── index.js
├── store
│ └── index.js
└── views
│ ├── About.vue
│ └── Home.vue
└── vue.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 |
6 | # local env files
7 | .env.local
8 | .env.*.local
9 |
10 | # Log files
11 | npm-debug.log*
12 | yarn-debug.log*
13 | yarn-error.log*
14 | pnpm-debug.log*
15 |
16 | # Editor directories and files
17 | .idea
18 | .vscode
19 | *.suo
20 | *.ntvs*
21 | *.njsproj
22 | *.sln
23 | *.sw?
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # sprint
2 |
3 | ## Project setup
4 | ```
5 | npm install
6 | ```
7 |
8 | ### Compiles and hot-reloads for development
9 | ```
10 | npm run serve
11 | ```
12 |
13 | ### Compiles and minifies for production
14 | ```
15 | npm run build
16 | ```
17 |
18 | ### Lints and fixes files
19 | ```
20 | npm run lint
21 | ```
22 |
23 | ### Customize configuration
24 | See [Configuration Reference](https://cli.vuejs.org/config/).
25 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "sprint",
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 | "core-js": "^3.6.5",
12 | "echarts": "^5.2.2",
13 | "vue": "^2.6.11",
14 | "vue-echarts": "^6.0.0",
15 | "vue-router": "^3.2.0",
16 | "vuetify": "^2.4.0",
17 | "vuex": "^3.4.0"
18 | },
19 | "devDependencies": {
20 | "@fortawesome/fontawesome-free": "^5.15.4",
21 | "@vue/cli-plugin-babel": "~4.5.0",
22 | "@vue/cli-plugin-eslint": "~4.5.0",
23 | "@vue/cli-plugin-router": "~4.5.0",
24 | "@vue/cli-plugin-vuex": "~4.5.0",
25 | "@vue/cli-service": "~4.5.0",
26 | "@vue/composition-api": "^1.4.3",
27 | "babel-eslint": "^10.1.0",
28 | "eslint": "^6.7.2",
29 | "eslint-plugin-vue": "^6.2.2",
30 | "material-design-icons-iconfont": "^6.1.1",
31 | "sass": "~1.32.0",
32 | "sass-loader": "^10.0.0",
33 | "vue-cli-plugin-vuetify": "~2.4.5",
34 | "vue-template-compiler": "^2.6.11",
35 | "vuetify-loader": "^1.7.0"
36 | },
37 | "eslintConfig": {
38 | "root": true,
39 | "env": {
40 | "node": true
41 | },
42 | "extends": [
43 | "plugin:vue/essential",
44 | "eslint:recommended"
45 | ],
46 | "parserOptions": {
47 | "parser": "babel-eslint"
48 | },
49 | "rules": {}
50 | },
51 | "browserslist": [
52 | "> 1%",
53 | "last 2 versions",
54 | "not dead"
55 | ]
56 | }
57 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/9ddcea812e8e87f71e4ac530f91cba33e699b553/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | <%= htmlWebpackPlugin.options.title %>
9 |
10 |
11 |
12 |
13 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
19 |
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/9ddcea812e8e87f71e4ac530f91cba33e699b553/src/assets/logo.png
--------------------------------------------------------------------------------
/src/assets/logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/components/HelloWorld.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
13 |
14 |
15 | Welcome to Vuetify
16 |
17 |
18 |
19 | For help and collaboration with other Vuetify developers,
20 |
please join our online
21 | Discord Community
25 |
26 |
27 |
28 |
32 |
33 | What's next?
34 |
35 |
36 |
37 |
44 | {{ next.text }}
45 |
46 |
47 |
48 |
49 |
53 |
54 | Important Links
55 |
56 |
57 |
58 |
65 | {{ link.text }}
66 |
67 |
68 |
69 |
70 |
74 |
75 | Ecosystem
76 |
77 |
78 |
79 |
86 | {{ eco.text }}
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
152 |
--------------------------------------------------------------------------------
/src/components/SideBar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
11 |
16 | fab fa-atlassian
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
35 |
36 |
37 |
38 | far fa-bell
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
67 |
--------------------------------------------------------------------------------
/src/components/SideBarRight.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Epics
5 |
6 |
7 | See All
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | fas fa-ellipsis-h
22 |
23 |
24 |
25 |
26 |
27 | Project statistic
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | Project
36 |
37 | progress
38 |
39 |
40 |
41 |
42 |
50 | 75
51 |
52 |
53 |
54 | percent
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 | Business
65 |
66 | goals
67 |
68 |
69 |
70 |
71 |
79 | 42
80 |
81 |
82 |
83 | percent
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 | Budget
94 |
95 | used
96 |
97 |
98 |
99 |
100 |
108 | 42
109 |
110 |
111 |
112 | percent
113 |
114 |
115 |
116 |
117 |
118 | Project Details
119 |
120 |
121 |
122 |
123 |
124 |
162 |
163 |
--------------------------------------------------------------------------------
/src/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './App.vue'
3 | import router from './router'
4 | import store from './store'
5 | import vuetify from './plugins/vuetify'
6 |
7 | Vue.config.productionTip = false
8 |
9 | new Vue({
10 | router,
11 | store,
12 | vuetify,
13 | render: h => h(App)
14 | }).$mount('#app')
15 |
--------------------------------------------------------------------------------
/src/plugins/vuetify.js:
--------------------------------------------------------------------------------
1 | import '@fortawesome/fontawesome-free/css/all.css'
2 | import 'material-design-icons-iconfont/dist/material-design-icons.css'
3 | import Vue from 'vue';
4 | import Vuetify from 'vuetify/lib/framework';
5 | import "echarts"
6 |
7 | Vue.use(Vuetify);
8 |
9 | export default new Vuetify({
10 | icons: {
11 | iconfont: 'fa' || 'md'
12 | },
13 | theme: {
14 | themes:{
15 | dark: {
16 | background: '#EEEEEE'
17 | }
18 | }
19 | }
20 |
21 | });
22 |
--------------------------------------------------------------------------------
/src/router/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import VueRouter from 'vue-router'
3 | import Home from '../views/Home.vue'
4 |
5 | Vue.use(VueRouter)
6 |
7 | const routes = [
8 | {
9 | path: '/',
10 | name: 'Home',
11 | component: Home
12 | },
13 | {
14 | path: '/about',
15 | name: 'About',
16 | // route level code-splitting
17 | // this generates a separate chunk (about.[hash].js) for this route
18 | // which is lazy-loaded when the route is visited.
19 | component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
20 | }
21 | ]
22 |
23 | const router = new VueRouter({
24 | mode: 'history',
25 | base: process.env.BASE_URL,
26 | routes
27 | })
28 |
29 | export default router
30 |
--------------------------------------------------------------------------------
/src/store/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Vuex from 'vuex'
3 |
4 | Vue.use(Vuex)
5 |
6 | export default new Vuex.Store({
7 | state: {
8 | },
9 | mutations: {
10 | },
11 | actions: {
12 | },
13 | modules: {
14 | }
15 | })
16 |
--------------------------------------------------------------------------------
/src/views/About.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
This is an about page
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/views/Home.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | fas fa-arrow-left
10 |
11 |
12 | fas fa-arrow-right
13 |
14 |
15 |
16 |
17 | finish sprint
18 |
19 |
20 |
21 | Sprint overview
22 |
23 | last sprint
24 |
25 |
26 |
27 |
28 |
29 |
33 |
34 |
42 |
43 |
44 |
45 |
46 |
47 |
48 | fas fa-chart-bar
49 |
50 |
51 | Team velocity
52 |
53 | 52
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
68 |
69 |
76 |
77 |
78 |
79 |
80 |
81 |
82 | far fa-user
83 |
84 |
85 | Team members
86 |
87 | 12
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
102 |
103 |
110 |
111 |
112 |
113 |
114 |
115 |
116 | fas fa-suitcase
117 |
118 |
119 | Tasks delivered
120 |
121 | 23
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
136 |
137 |
144 |
145 |
146 |
147 |
148 |
149 |
150 | fas fa-search
151 |
152 |
153 | Spikes delivered
154 |
155 | 23
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
170 |
171 |
178 |
179 |
180 |
181 |
182 |
183 |
184 | fas fa-globe-africa
185 |
186 |
187 | News events
188 |
189 | 15
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 | Sprint stories
216 |
217 |
218 | See All
219 |
220 |
221 |
222 |
223 |
224 |
228 | {{ item.id }} |
229 | {{ item.title }} |
230 | {{ item.state }} |
231 | {{ item.count }} |
232 | {{ item.icon }} |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 | Team members
241 |
242 |
243 | Add member
244 |
245 |
246 |
247 |
248 |
249 |
254 |
257 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 | AAE Ideapro
276 |
277 | 32 Story point
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
290 |
293 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 | Jhony
312 |
313 | 8 Story point
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
326 |
329 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 | Mimi
348 |
349 | 32 Story point
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
362 |
365 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 | Selia
384 |
385 | 10 Story point
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 |
507 |
516 |
--------------------------------------------------------------------------------
/vue.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | transpileDependencies: [
3 | 'vuetify'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------