Chatwoot/app/javascript/dashboard/components/widgets/EmptyState.vue
Muhsin Keloth 9306b725d8
chore: Fix pre-commit hooks (#3525)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-12-08 17:32:00 -08:00

20 lines
300 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>