18 lines
327 B
Vue
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>
|