Chatwoot/app/javascript/dashboard/components/widgets/EmptyState.vue
Muhsin Keloth 9606abe251
chore: Fix Eslint warnings (#3654)
* Fix all the eslint warnings

* Revert the schema
2021-12-27 13:49:31 +05:30

20 lines
369 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: { type: String, default: '' },
message: { type: String, default: '' },
buttonText: { type: String, default: '' },
},
};
</script>