This commit is contained in:
j3d1 2024-05-22 22:10:01 +02:00
parent 6ae1e4f099
commit 29e35fc18a

View file

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