Fix Buefy "row grids" when viewing parent; add basic file upload support

This commit is contained in:
Lance Edgar 2019-05-23 16:29:29 -05:00
parent 5998941741
commit d7c8b80da5
8 changed files with 125 additions and 38 deletions

View file

@ -3,5 +3,3 @@ let TailboneForm = {
template: '#tailbone-form-template',
methods: {}
}
let TailboneFormData = {}

View file

@ -5,6 +5,9 @@ const OnceButton = {
'<b-button',
':type="type"',
':native-type="nativeType"',
':tag="tag"',
':href="href"',
':title="title"',
':disabled="disabled"',
'@click="clicked"',
'>',
@ -15,7 +18,10 @@ const OnceButton = {
props: {
type: String,
nativeType: String,
tag: String,
href: String,
text: String,
title: String,
working: String,
workingText: String,
disabled: Boolean