Showing
1 changed file
with
7 additions
and
6 deletions
... | @@ -28,10 +28,7 @@ | ... | @@ -28,10 +28,7 @@ |
28 | <v-list-item-content > | 28 | <v-list-item-content > |
29 | <v-list-item-title v-text="item.folder_name"></v-list-item-title> | 29 | <v-list-item-title v-text="item.folder_name"></v-list-item-title> |
30 | </v-list-item-content> | 30 | </v-list-item-content> |
31 | - </v-list-item> | 31 | + <v-menu |
32 | - | ||
33 | - | ||
34 | - <v-menu | ||
35 | v-model="showMenu" | 32 | v-model="showMenu" |
36 | :position-x="x" | 33 | :position-x="x" |
37 | :position-y="y" | 34 | :position-y="y" |
... | @@ -40,15 +37,19 @@ | ... | @@ -40,15 +37,19 @@ |
40 | > | 37 | > |
41 | <v-list dense> | 38 | <v-list dense> |
42 | <v-list-item @click.prevent="dialog2 = !dialog2"> | 39 | <v-list-item @click.prevent="dialog2 = !dialog2"> |
40 | + <v-icon>mdi-folder</v-icon> | ||
43 | <v-list-item-title>이동</v-list-item-title> | 41 | <v-list-item-title>이동</v-list-item-title> |
44 | </v-list-item> | 42 | </v-list-item> |
45 | - <v-list-item @click.prevent="deleteF"> | 43 | + <v-list-item @click.prevent="deleteF(item.folder_name)"> |
46 | <v-list-item-title>삭제</v-list-item-title> | 44 | <v-list-item-title>삭제</v-list-item-title> |
47 | </v-list-item> | 45 | </v-list-item> |
48 | </v-list> | 46 | </v-list> |
49 | </v-menu> | 47 | </v-menu> |
48 | + </v-list-item> | ||
49 | + | ||
50 | 50 | ||
51 | - <v-dialog | 51 | + |
52 | + <v-dialog | ||
52 | v-model="dialog2" | 53 | v-model="dialog2" |
53 | width="500px" | 54 | width="500px" |
54 | > | 55 | > | ... | ... |
-
Please register or login to post a comment