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