Files
mixtape/zero.Web/App/Components/Buttons/dot-button.vue
T
2020-04-09 15:53:03 +02:00

38 lines
631 B
Vue

<template>
<button type="button" class="ui-dot-button" @click="click" :title="title | localize">
<span class="sr-only" v-localize="title"></span>
<i class="ui-button-icon fth-more-horizontal"></i>
</button>
</template>
<script>
export default {
name: 'uiDotButton',
props: {
state: {
type: String,
default: 'default'
},
title: {
type: String,
default: '@ui.actions'
},
disabled: Boolean,
click: {
type: Function,
default: () => { }
}
},
mounted ()
{
},
methods: {
}
}
</script>