gamebrary/src/components/ModalHeader.vue

57 lines
886 B
Vue
Raw Normal View History

2020-10-13 17:10:52 -07:00
<template lang="html">
<header>
<div>
<h5 class="mb-0">{{ title }}</h5>
<small>{{ subtitle }}</small>
</div>
2020-10-23 09:20:35 -07:00
<div class="actions">
<slot />
<b-button
:variant="nightMode ? 'dark' : 'light'"
size="sm"
class="ml-auto"
@click="$emit('close')"
>
<icon name="x" />
</b-button>
</div>
2020-10-13 17:10:52 -07:00
</header>
</template>
<script>
2020-10-14 14:48:27 -07:00
import { mapGetters } from 'vuex';
2020-10-13 17:10:52 -07:00
export default {
props: {
title: String,
subtitle: String,
},
2020-10-14 14:48:27 -07:00
computed: {
...mapGetters(['nightMode']),
},
2020-10-13 17:10:52 -07: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;
2020-10-31 10:43:55 -07:00
align-self: flex-start;
2020-10-13 17:10:52 -07:00
}
</style>