18 lines
335 B
Vue
18 lines
335 B
Vue
|
<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) {
|
||
|
window.info.showMove = true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|