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

17 lines
318 B
Vue

<template>
<button
class="btn ripple"
:style="{
color: textColor,
backgroundColor: backgroundColor,
border: `2px solid ${backgroundColor}`
}"
@click="$emit('click')"
>
{{ label }}
</button>
</template>
<script src="./ft-button.js" />
<style scoped src="./ft-button.css" />