21 lines
425 B
Vue
21 lines
425 B
Vue
<template>
|
|
<section class="section">
|
|
<div class="content has-text-grey has-text-centered">
|
|
<p>
|
|
<b-icon :icon="!icon ? 'plus' : icon" size="is-large" />
|
|
</p>
|
|
<p>{{ !label ? 'Nothing here yet' : label }}</p>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
export default {
|
|
name: 'EmptyPlaceholder',
|
|
props: {
|
|
icon: String,
|
|
label: String,
|
|
},
|
|
};
|