Adrien Foulon

Results 434 comments of Adrien Foulon

> Automatically Lazyify values, I don't think we should do this automatically but maybe an attribute [AutoLazy] could indicate this? Would also be cool for other things than models so...

@nathanchase Yes there is, you just have the wrong prop name Replace ```vue :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" ``` with ```vue :content="props.modelValue" @update:content="$emit('update:modelValue', $event)" ``` You may also need to do `const...

There is no reason you need to introduce an intermediate reactive variable, that's a lot of redundant code `@update:content` is called when your content update so there is no need...

Does the error still happens if you use `ref(new Delta([]);` ?

As a workaround, try to create a delta with some content in it, there might be a bug in the previous PR for deltas as I'm not using it and...

I've found the issue, it was a small one, I'll make a follow up PR

@adrianhand Are you sure you're on the correct branch if you pulled the fork? Because the pen is exactly as in the demo, which works fine, but for the `selectedNote.value.insert('Text',...

It is in fact master, I added deep reactivity support for delta, give it a pull and let me know

Same issue here v2.0.0 and 2.0.1 with isotope v3.0.0 and 3.0.6