This commit is contained in:
j3d1 2024-05-22 22:10:01 +02:00
parent b15eab9c27
commit 9377f71d60

View file

@ -20,8 +20,8 @@ export default {
emits: ['input'], emits: ['input'],
methods: { methods: {
rawhtml(value) { rawhtml(value) {
if (typeof format === 'function') { if (typeof this.format === 'function') {
return format(value); return this.format(value);
} else { } else {
return value; return value;
} }