Former-commit-id: d69ab4b48daff97db9ea91ccd2341f07c2ae89de [formerly bba6e08f3d96f251bdfb51a88b1e03c3ce2f32f0] [formerly 8d5d2dd9b3b2fa702c4b7831821c79912bb2f470 [formerly 5291e71132874ba22d6f859f52974007fd717acb]] Former-commit-id: d30c056123fa2bc60519f45d8ba5a7151c0ff726 [formerly 8acf445e82c01881d7129489b68a7520c415bb8a] Former-commit-id: b43f8a1301fa55506c6d0e22b91d395957275d39
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>
|