<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div id="app">
<transition name="fade">
<div v-if="switc" class="target">
<div style="background-color: pink; padding: 20px; margin-bottom: 20px;">
<p>
Text that could be of any length because it comes from a database.
</p>
<textarea style="resize: vertical;">
Textarea that the user can resize
</textarea>
</div>
</div>
</transition>
<button type="button" class="btn btn-secondary" @click="switc = !switc">
<span>Switch</span>
</button>
</div>