mirror of
https://github.com/romancm/gamebrary
synced 2024-12-19 07:43:15 +00:00
25 lines
451 B
Vue
25 lines
451 B
Vue
|
<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>
|