mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-20 12:54:18 +00:00
22 lines
293 B
Vue
22 lines
293 B
Vue
<template>
|
|
<div class="card">
|
|
<div v-if="title" class="card-header">
|
|
{{ title }}
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
<slot/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Card',
|
|
|
|
props: {
|
|
title: { type: String, default: null }
|
|
}
|
|
}
|
|
</script>
|