2017-06-28 18:26:07 +00:00
|
|
|
<template>
|
2017-06-29 08:11:46 +00:00
|
|
|
<button @click="show" title="Info" aria-label="Info" class="action">
|
2017-06-28 18:26:07 +00:00
|
|
|
<i class="material-icons">info</i>
|
|
|
|
<span>Info</span>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'info-button',
|
2017-06-28 21:20:28 +00:00
|
|
|
methods: {
|
|
|
|
show: function (event) {
|
2017-06-30 09:25:35 +00:00
|
|
|
this.$store.commit('showInfo', true)
|
2017-06-28 21:20:28 +00:00
|
|
|
}
|
2017-06-28 18:26:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|