18 lines
423 B
Vue
18 lines
423 B
Vue
|
<template>
|
||
|
<button @click="upload" :aria-label="$t('buttons.upload')" :title="$t('buttons.upload')" class="action" id="upload-button">
|
||
|
<i class="material-icons">file_upload</i>
|
||
|
<span>{{ $t('buttons.upload') }}</span>
|
||
|
</button>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'upload-button',
|
||
|
methods: {
|
||
|
upload: function (event) {
|
||
|
document.getElementById('upload-input').click()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|