fix[Tinymce]: uuid bug
This commit is contained in:
parent
4c49259c92
commit
87b319d96a
1 changed files with 3 additions and 1 deletions
|
@ -18,7 +18,9 @@ export default {
|
|||
props: {
|
||||
id: {
|
||||
type: String,
|
||||
default: 'vue-tinymce-' + +new Date()
|
||||
default: function() {
|
||||
return 'vue-tinymce-' + +new Date() + ((Math.random() * 1000).toFixed(0) + '')
|
||||
}
|
||||
},
|
||||
value: {
|
||||
type: String,
|
||||
|
|
Loading…
Reference in a new issue