Add ability to create new database through the UI
This commit is contained in:
parent
17796fb1c4
commit
c28e9c1ab7
12 changed files with 240 additions and 37 deletions
16
resources/assets/scripts/components/MessageBox.vue
Normal file
16
resources/assets/scripts/components/MessageBox.vue
Normal file
|
@ -0,0 +1,16 @@
|
|||
<template>
|
||||
<div class="lg:inline-flex" role="alert">
|
||||
<span class="title" v-html="title" v-if="title && title.length > 0"></span>
|
||||
<span class="message" v-html="message"></span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'message-box',
|
||||
props: {
|
||||
title: {type: String, required: false},
|
||||
message: {type: String, required: true}
|
||||
},
|
||||
};
|
||||
</script>
|
Reference in a new issue