ReCast is a multi platform restreaming tool, you can stream with one servers to multiple services
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
484 B

<template>
<div class="card">
<div class="card-image" v-if="$slots.image">
<slot name="image"></slot>
</div>
<div class="card-header" v-if="$slots.header">
<slot name="header"></slot>
</div>
<div class="card-body">
<slot></slot>
</div>
<div class="card-footer" v-if="$slots.footer">
<hr>
<slot name="footer"></slot>
</div>
</div>
</template>
<script>
export default {
name: 'card'
}
</script>
<style>
</style>