adding formatter function on table field creation. Formatter Funktion Object to String

This commit is contained in:
ogerly 2021-11-25 15:29:26 +01:00
parent e34b6f7137
commit 7169a3635d
4 changed files with 7 additions and 4 deletions

View File

@ -285,9 +285,6 @@ export default {
}
// das absendeergebniss im string ansehen
// alert(JSON.stringify(this.submitObj))
// das submitObj zurücksetzen
this.submitObj = null
// das creation Formular reseten
this.$refs.creationForm.reset()
// Den geschöpften Wert auf o setzen

View File

View File

@ -32,7 +32,13 @@ export default {
{ key: 'email', label: 'Email' },
{ key: 'firstName', label: 'Firstname' },
{ key: 'lastName', label: 'Lastname' },
{ key: 'creation', label: 'Creation' },
{
key: 'creation',
label: 'Creation',
formatter: (value, key, item) => {
return String(value)
},
},
{ key: 'show_details', label: 'Details' },
],
searchResult: [],