2
0
mirror of https://github.com/frappe/books.git synced 2025-01-27 09:08:24 +00:00
books/ui/components/Button.vue

9 lines
270 B
Vue
Raw Normal View History

2018-06-27 20:08:27 +05:30
<template functional>
<button type="button"
2018-07-14 23:22:34 +05:30
:class="['btn btn-sm', 'btn-' + Object.keys(props).find(key => ['primary', 'secondary', 'light', 'dark', 'danger'].includes(key))]"
2018-06-27 20:08:27 +05:30
v-bind="data.attrs"
v-on="listeners">
2018-06-27 20:08:27 +05:30
<slot></slot>
</button>
2018-07-14 17:29:55 +05:30
</template>