<section class="scans">
<h3>Scans</h3>
<ul v-if="scans.length === 0">
<li class="empty">No scans yet</li>
</ul>
<transition-group name="scans" tag="ul">
<li v-for="scan in scans" :key="scan.date" :title="scan.content">
{{ scan.content }}
</li>
</transition-group>
</section>
How can i pass '{{ scan.content }}' to a html element (textbox) or php ($scanned) variable?
scan.contentin a textbox? Or do you want to know how to POST your client-side data to the server so PHP can have access to it?