You've already forked filebrowser
mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-11-26 14:25:26 +08:00
11 lines
268 B
Vue
11 lines
268 B
Vue
<template>
|
|
<button @click="this.$store.commit('showPrompt', 'move')" aria-label="Move" title="Move" class="action">
|
|
<i class="material-icons">forward</i>
|
|
<span>Move file</span>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {name: 'move-button'}
|
|
</script>
|