listmonk/frontend/src/components/EmptyPlaceholder.vue
2020-07-04 22:25:02 +05:30

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,
},
};