f214c9c47c
Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
16 lines
276 B
Vue
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>
|