gamebrary/src/components/ModalHeader.vue
2020-10-14 14:48:27 -07:00

53 lines
805 B
Vue

<template lang="html">
<header>
<div>
<h5 class="mb-0">{{ title }}</h5>
<small>{{ subtitle }}</small>
</div>
<slot />
<b-button
:variant="nightMode ? 'dark' : 'light'"
size="sm"
class="ml-auto"
@click="$emit('close')"
>
<icon name="x" />
</b-button>
</header>
</template>
<script>
import { mapGetters } from 'vuex';
export default {
props: {
title: String,
subtitle: String,
},
computed: {
...mapGetters(['nightMode']),
},
};
</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>