gamebrary/src/components/EmptyState.vue

30 lines
459 B
Vue
Raw Normal View History

2020-11-22 03:31:18 +00:00
<template lang="html">
<div class="text-center pt-5">
<h2>{{ title }}</h2>
<p>{{ message }}</p>
<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 {
props: {
title: String,
message: String,
actionText: String,
},
2020-11-22 03:31:18 +00:00
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
</style>