Chatwoot/app/javascript/dashboard/components/widgets/LoadingState.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

12 lines
232 B
Vue

<template>
<div class="row loading-state">
<h6 class="message">{{ message }}<span class="spinner" /></h6>
</div>
</template>
<script>
export default {
props: {
message: { type: String, default: '' },
},
};
</script>