search_folders clickable

This commit is contained in:
2021-05-24 02:15:25 +08:00
parent 6cc8b3a96b
commit ad433665f3

View File

@@ -31,7 +31,7 @@ const component_search_folders = {
</thead> </thead>
<tbody> <tbody>
<tr v-for="folder in folders"> <tr v-for="folder in folders">
<td>{{ folder.foldername }}</td> <td class="clickable" @click="view_folder(folder)">{{ folder.foldername }}</td>
<td><button @click="view_folder(folder)">View</button></td> <td><button @click="view_folder(folder)">View</button></td>
</tr> </tr>
</tbody> </tbody>