gamebrary/src/components/ModalHeader.vue

54 lines
805 B
Vue
Raw Normal View History

2020-10-14 00:10:52 +00:00
<template lang="html">
<header>
<div>
<h5 class="mb-0">{{ title }}</h5>
<small>{{ subtitle }}</small>
</div>
2020-10-14 21:48:27 +00:00
<slot />
<b-button
:variant="nightMode ? 'dark' : 'light'"
size="sm"
class="ml-auto"
@click="$emit('close')"
>
<icon name="x" />
</b-button>
2020-10-14 00:10:52 +00:00
</header>
</template>
<script>
2020-10-14 21:48:27 +00:00
import { mapGetters } from 'vuex';
2020-10-14 00:10:52 +00:00
export default {
props: {
title: String,
subtitle: String,
},
2020-10-14 21:48:27 +00:00
computed: {
...mapGetters(['nightMode']),
},
2020-10-14 00:10:52 +00:00
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
header {
display: grid;
width: 100%;
align-items: center;
grid-template-columns: auto auto;
}
h5 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.actions {
margin-left: auto;
}
</style>