Files
mixtape/zero.Web.UI/App/components/buttons/icon-button.vue
T
2020-10-15 14:10:26 +02:00

46 lines
833 B
Vue

<template>
<button type="button" class="ui-icon-button" :disabled="disabled" :class="'type-' + type.split(' ').join(' type-')" @click="tryClick" :title="title | localize">
<span class="sr-only" v-localize="title"></span>
<i class="ui-button-icon" :class="icon"></i>
</button>
</template>
<script>
export default {
name: 'uiIconButton',
props: {
state: {
type: String,
default: 'default'
},
icon: {
type: String,
default: 'fth-arrow-left'
},
type: {
type: String,
default: 'action'
},
title: {
type: String,
default: ''
},
disabled: Boolean
},
mounted ()
{
},
methods: {
tryClick(ev)
{
this.$emit('click', ev);
}
}
}
</script>