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