mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 11:22:10 +00:00
18 lines
368 B
Vue
18 lines
368 B
Vue
<template>
|
|
<button @click="show" :aria-label="$t('buttons.share')" :title="$t('buttons.share')" class="action">
|
|
<i class="material-icons">share</i>
|
|
<span>{{ $t('buttons.share') }}</span>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'share-button',
|
|
methods: {
|
|
show () {
|
|
this.$store.commit('showHover', 'share')
|
|
}
|
|
}
|
|
}
|
|
</script>
|