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

12 lines
178 B
Vue
Raw Normal View History

2020-02-16 19:30:00 +01:00
<template>
<div
class="ft-card"
@focusout="$emit('focusout')"
>
2020-02-16 19:30:00 +01:00
<slot />
</div>
</template>
<script src="./ft-card.js" />
<style scoped src="./ft-card.css" />