Chatwoot/app/javascript/dashboard/components/widgets/EmptyState.vue
Nithin David Thomas f214c9c47c
feat: Add Contacts page (#1335)
Co-authored-by: Sojan <sojan@pepalo.com>
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
2020-11-10 15:25:26 +05:30

16 lines
276 B
Vue

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