filebrowser/frontend/src/components/header/Action.vue

17 lines
301 B
Vue
Raw Normal View History

2021-02-25 18:37:07 +00:00
<template>
<button @click="$emit('action')" :aria-label="label" :title="label" class="action">
<i class="material-icons">{{ icon }}</i>
<span>{{ label }}</span>
</button>
</template>
<script>
export default {
name: 'action',
props: [ 'icon', 'label' ]
}
</script>
<style>
</style>