stubbed out generic form modal

This commit is contained in:
smilerz
2021-08-27 16:48:19 -05:00
parent 30b513cb58
commit 23ecce7930
21 changed files with 278 additions and 636 deletions

View File

@@ -0,0 +1,29 @@
<template>
<div>
<b-form-group
v-bind:label="label"
class="mb-3">
<b-form-input
type="string"
></b-form-input>
</b-form-group>
</div>
</template>
<script>
export default {
name: 'TextInput',
props: {
label: {type: String, default: 'Text Field'},
show_delete: {type: Boolean, default: true},
show_move: {type: Boolean, default: false},
show_merge: {type: Boolean, default: false},
},
methods: {
Button: function(e) {
this.$bvModal.show('modal')
}
}
}
</script>