2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/ui/components/Button.vue

9 lines
272 B
Vue
Raw Normal View History

2018-06-27 14:38:27 +00:00
<template functional>
<button type="button"
:class="['btn btn-sm', 'btn-' + Object.keys(props).find(key => ['primary', 'secondary', 'light', 'dark', 'danger'].includes(key))]"
2018-06-27 14:38:27 +00:00
v-bind="data.attrs"
v-on="listeners"
>
<slot></slot>
</button>
</template>