This commit is contained in:
2019-07-18 18:54:20 +00:00
parent 7fdeb9bc65
commit 68558301ac
2 changed files with 22 additions and 12 deletions

View File

@@ -12,7 +12,7 @@
</span>
</div>
<hr />
{{ obj.c2 }}
<div>
<v-layout align-center justify-left row wrap>
<template v-for="item in this.$store.state.formCustomTemplate[formKey]">
@@ -31,7 +31,7 @@
</div>
<div v-else-if="item.type === 'text'">
<v-textarea
v-model="$data[item.fld]"
v-model="$data[item.dataKey]"
:readonly="readOnly"
:label="lt(item.fld)"
auto-grow
@@ -94,8 +94,21 @@ CUSTOM FIELD DATA:
export default {
data() {
return {
obj: { me: 1, c2: "This is my c2 data!", WidgetCustom2: "Here is my OBJ.WidgetCustom2 Data!" },
WidgetCustom2: "Here is my WidgetCustom2 Data!"
c1:null,
c2: "Here is my WidgetCustom2 Data!",
c3: null,
c4: null,
c5: null,
c6: null,
c7: null,
c8: null,
c9: null,
c10: null,
c12: null,
c13: null,
c14: null,
c15: null,
c16: null
};
},
props: {