For the purpose of making it challenging for those who steal content, I want to prevent the copy-paste function on rendered texts within vue.js components.
Take a look at this template example:
<template>
<div id="my-precious-content">
<div class="container">
<div> Some {{texts}} will be displayed here </div>
<div> And {{moreTexts}} will be shown here as well </div>
</div>
</div>
</template>
I am curious about how I can accomplish this.