Skip to content
Snippets Groups Projects
Commit 87b319d9 authored by Pan's avatar Pan
Browse files

fix[Tinymce]: uuid bug

parent 4c49259c
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment