최동원

.

...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
30 <v-icon color="grey lighten-1">mdi-information</v-icon> 30 <v-icon color="grey lighten-1">mdi-information</v-icon>
31 </v-btn> 31 </v-btn>
32 <v-btn icon> 32 <v-btn icon>
33 - <v-icon color="grey ligthen-1">mdi-delete</v-icon> 33 + <v-icon color="grey lighten-1">mdi-delete</v-icon>
34 </v-btn> 34 </v-btn>
35 </v-list-item-action> 35 </v-list-item-action>
36 </v-list-item> 36 </v-list-item>
...@@ -51,6 +51,9 @@ ...@@ -51,6 +51,9 @@
51 <v-btn icon> 51 <v-btn icon>
52 <v-icon color="grey lighten-1">mdi-information</v-icon> 52 <v-icon color="grey lighten-1">mdi-information</v-icon>
53 </v-btn> 53 </v-btn>
54 + <v-btn icon>
55 + <v-icon color="grey lighten-1">mdi-delted</v-icon>
56 + </v-btn>
54 </v-list-item-action> 57 </v-list-item-action>
55 </v-list-item> 58 </v-list-item>
56 </v-list> 59 </v-list>
...@@ -124,7 +127,6 @@ ...@@ -124,7 +127,6 @@
124 </v-dialog> 127 </v-dialog>
125 </div> 128 </div>
126 </template> 129 </template>
127 -
128 <script> 130 <script>
129 import { folder, makeFolder } from '../api/index'; 131 import { folder, makeFolder } from '../api/index';
130 export default { 132 export default {
...@@ -191,7 +193,6 @@ import { folder, makeFolder } from '../api/index'; ...@@ -191,7 +193,6 @@ import { folder, makeFolder } from '../api/index';
191 console.log(error.response.data); 193 console.log(error.response.data);
192 } 194 }
193 } 195 }
194 - 196 + }
195 - }
196 } 197 }
197 -</script> 198 +</script>
...\ No newline at end of file ...\ No newline at end of file
......
1 -<template>
2 - <div>
3 - <v-list>
4 - <v-icon>mdi-folder</v-icon>
5 - <v-header>Folders</v-header>
6 - <v-list-item
7 - v-for="item in items"
8 - :key="item.files">
9 -
10 - </v-list-item>
11 - </v-list>
12 - </div>
13 -</template>
14 -
15 -<script>
16 -export default {
17 - props:{
18 -
19 - }
20 -}
21 -</script>
22 -
23 -<style>
24 -
25 -</style>
...\ No newline at end of file ...\ No newline at end of file
...@@ -67,11 +67,6 @@ export default new VueRouter ({ ...@@ -67,11 +67,6 @@ export default new VueRouter ({
67 name:'Feedback', 67 name:'Feedback',
68 component: () => import('../views/Feedback.vue') 68 component: () => import('../views/Feedback.vue')
69 }, 69 },
70 - {
71 - path: '/folder',
72 - name: 'Folder',
73 - component: () => import('../views/FolderPage.vue')
74 - }
75 70
76 ] 71 ]
77 }) 72 })
......
1 -<template>
2 - <div>
3 - <FolderList></FolderList>
4 - </div>
5 -</template>
6 -
7 -<script>
8 -import FolderList from '../components/FolderList'
9 -
10 -export default {
11 - components: {
12 - FolderList,
13 - }
14 -}
15 -</script>
16 -
17 -<style>
18 -
19 -</style>
...\ No newline at end of file ...\ No newline at end of file