2
0
mirror of https://github.com/frappe/books.git synced 2025-02-14 17:56:34 +00:00
books/src/components/Button.vue

26 lines
513 B
Vue
Raw Normal View History

2019-10-04 23:51:26 +05:30
<template>
2019-10-05 01:48:10 +05:30
<button class="text-sm px-4 py-2 focus:outline-none rounded-lg" :style="style">
2019-10-04 23:51:26 +05:30
<slot></slot>
</button>
</template>
2019-10-05 01:48:10 +05:30
<script>
export default {
name: 'Button',
props: {
type: {
type: String,
default: 'secondary'
}
},
computed: {
style() {
return {
'background-image': this.type === 'primary'
? 'linear-gradient(180deg, #4AC3F8 0%, #2490EF 100%)'
: 'linear-gradient(180deg, #FFFFFF 0%, #F4F4F6 100%)'
}
}
}
2019-10-04 23:51:26 +05:30
}
2019-10-05 01:48:10 +05:30
</script>