18 lines
401 B
Vue
18 lines
401 B
Vue
<template>
|
|
<button @click="show" :aria-label="$t('buttons.move')" :title="$t('buttons.move')" class="action" id="move-button">
|
|
<i class="material-icons">forward</i>
|
|
<span>{{ $t('buttons.moveFile') }}</span>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'move-button',
|
|
methods: {
|
|
show: function (event) {
|
|
this.$store.commit('showHover', 'move')
|
|
}
|
|
}
|
|
}
|
|
</script>
|