filebrowser/_assets/src/components/buttons/InfoButton.vue
2017-07-04 17:15:38 +01:00

18 lines
327 B
Vue

<template>
<button title="Info" aria-label="Info" class="action" @click="show">
<i class="material-icons">info</i>
<span>Info</span>
</button>
</template>
<script>
export default {
name: 'info-button',
methods: {
show: function (event) {
this.$store.commit('showHover', 'info')
}
}
}
</script>