2017-06-29 08:11:46 +00:00
|
|
|
<template>
|
|
|
|
<button @click="show" 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',
|
|
|
|
methods: {
|
|
|
|
show: function (event) {
|
2017-06-30 09:25:35 +00:00
|
|
|
this.$store.commit('showMove', true)
|
2017-06-29 08:11:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|