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

9 lines
262 B
Vue

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