mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-14 00:10:10 -04:00
20 lines
404 B
Vue
20 lines
404 B
Vue
<template>
|
|
<button
|
|
class="button is-small is-rounded"
|
|
:disabled="button.disabled"
|
|
@click="button.handler"
|
|
>
|
|
<mdicon v-if="button.icon" class="icon" :name="button.icon" size="16" />
|
|
<span v-if="button.key" v-text="$t(button.key)" />
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ControlButton',
|
|
props: {
|
|
button: { required: true, type: Object }
|
|
}
|
|
}
|
|
</script>
|