To view a JS Fiddle example of this concept, click the link below:
Essentially, I have three text areas. The content entered in the first text area should automatically appear in the second text area, which will then be copied to the third text area as well.
<div id="app">
<textarea v-model="first"></textarea>
<textarea v-model="second">{{first}}</textarea>
<textarea>{{ second }}</textarea>