2020-11-22 03:31:18 +00:00
|
|
|
<template lang="html">
|
|
|
|
<div class="text-center pt-5">
|
2020-11-23 18:10:43 +00:00
|
|
|
<h2 v-if="title">{{ title }}</h2>
|
|
|
|
<p v-if="message">{{ message }}</p>
|
2020-11-23 18:09:17 +00:00
|
|
|
|
|
|
|
<b-button
|
|
|
|
v-if="actionText"
|
|
|
|
variant="primary"
|
|
|
|
@click="$emit('action')"
|
|
|
|
>
|
|
|
|
{{ actionText }}
|
|
|
|
</b-button>
|
|
|
|
|
|
|
|
<slot />
|
2020-11-22 03:31:18 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2020-11-23 18:09:17 +00:00
|
|
|
props: {
|
|
|
|
title: String,
|
|
|
|
message: String,
|
|
|
|
actionText: String,
|
|
|
|
},
|
2020-11-22 03:31:18 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" rel="stylesheet/scss" scoped>
|
|
|
|
</style>
|