Chatwoot/app/javascript/dashboard/components/widgets/EmptyState.vue
2019-10-16 14:36:17 +05:30

17 lines
278 B
Vue

<template>
<div class="row empty-state">
<h3 class="title">{{title}}</h3>
<p class="message">{{message}}</p>
<slot></slot>
</div>
</template>
<script>
export default {
props: {
title: String,
message: String,
buttonText: String,
},
};
</script>