props接受父组件传递的id值
props: {
id: {
type: String,
default: function() {
return 'vue-tinymce-' + +new Date() + ((Math.random() * 1000).toFixed(0) + '')
}//随机数
},
},
data() {
return {
tinymce: this.id
}
}
组件部分
<textarea :id="tinymceId" class="tinymce-textarea" />