<template>
<div class="user-selectable">
<rich-text :nodes="nodes" :selectable="false"></rich-text>
</div>
</template>
<script>
export default {
data() {
return {
nodes: [
{
type: 'text',
text: '可选中的文本'
}
]
}
}
}
</script>
<style>
.user-selectable {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
</style>