freetube/src/renderer/components/ft-button/ft-button.vue

19 lines
343 B
Vue
Raw Normal View History

2020-02-16 18:30:00 +00:00
<template>
<button
class="btn ripple"
:style="{
color: textColor,
backgroundColor: backgroundColor,
border: `2px solid ${backgroundColor}`
}"
@click="$emit('click')"
>
2020-06-17 12:15:36 +00:00
<slot>
{{ label }}
</slot>
2020-02-16 18:30:00 +00:00
</button>
</template>
<script src="./ft-button.js" />
<style scoped src="./ft-button.css" />