Former-commit-id: 693423b34a05c66aeb1fac8832a7cfbe8a440a8c [formerly db4998875d0347b455cd77e34d68cfe3e7db355b] [formerly 48da880c8e3e5b7a0f32d36e4a728b899acb7986 [formerly 7aa6a549f986d3673cf7f0c2669e39b083add791]] Former-commit-id: d7c550899bf1a84e5e0831ed6e3573ccf798f7a4 [formerly 3c951aaf0f638ac5e7637841e835f3a354c33192] Former-commit-id: b5839c3e783af0182ca7ffc037161914d4a2a503
16 lines
296 B
Vue
16 lines
296 B
Vue
<template>
|
|
<button title="Info" aria-label="Info" class="action" id="info">
|
|
<i class="material-icons">info</i>
|
|
<span>Info</span>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'info-button',
|
|
data: function () {
|
|
return window.info.page.data
|
|
}
|
|
}
|
|
</script>
|