gamebrary/src/components/Board/EmptyBoard.vue

25 lines
451 B
Vue
Raw Normal View History

2020-10-14 00:11:08 +00:00
<template lang="html">
<b-jumbotron class="empty-board w-100 text-center">
<p>This board is empty</p>
<b-button variant="primary" @click="openAddListModal">
Add list
</b-button>
</b-jumbotron>
</template>
<script>
export default {
methods: {
openAddListModal() {
this.$bvModal.show('add-list');
},
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.empty-board {
max-width: 300px;
}
</style>