-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Closed
Labels
Description
Hello, I have this example: https://jsfiddle.net/rjurado/tq136Lwr/
<textarea id="textarea" v-pre>
{{works}}
</textarea>
<div id="example">
<p v-pre>{{ work }}</p>
<textarea v-pre>{{ no wokrs }}</textarea>
</div>
new Vue({ el: '#textarea' });
new Vue({ el: '#example' });
Why second textarea show empty?
If you inspect it you can see this:
<textarea :value="no wokrs">{{ no wokrs }}</textarea>
sirlancelot