2017-06-29 08:11:46 +00:00
|
|
|
<template>
|
2017-06-30 16:49:05 +00:00
|
|
|
<button @click="$store.commit('showMove', true)" aria-label="Move" title="Move" class="action">
|
|
|
|
<i class="material-icons">forward</i>
|
|
|
|
<span>Move file</span>
|
|
|
|
</button>
|
2017-06-29 08:11:46 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2017-06-30 16:49:05 +00:00
|
|
|
export default {name: 'move-button'}
|
2017-06-29 08:11:46 +00:00
|
|
|
</script>
|