2019-08-14 09:48:44 +00:00
|
|
|
<template>
|
|
|
|
<div class="row empty-state">
|
|
|
|
<h3 class="title">{{title}}</h3>
|
|
|
|
<p class="message">{{message}}</p>
|
2019-12-16 12:53:14 +00:00
|
|
|
<slot />
|
2019-08-14 09:48:44 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
title: String,
|
|
|
|
message: String,
|
|
|
|
buttonText: String,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|