Ckeditor默认文本(占位符)在DivArea中不起作用

Im using CKeditor as my text editor and it seems that the default text (placeholder) which is added by the confighelper plugin is not working with divArea plugin.

When i remove the divArea plugin then the default text is working. Additional info is that I am using vuejs to integrate it

I already integrated the default text (placeholder) and its working however i need to use the divArea because i need to use the Placeholder plugin and i have some configuration with it

This is my config

config: {
    toolbar: [
              [ 'Bold', 'Italic', 'Underline', 'NumberedList', 'BulletedList', 'Undo','Redo','liststyle','tabletools','Scayt','contextmenu','menubutton','CreatePlaceholder'],
            ],
            height: 300,
            extraPlugins: ['confighelper','basicstyles','placeholder','widget','dialog','divarea','undo'],
            allowedContent: true,
            resize_enabled: false,
            scayt_autoStartup: true,
            forcePasteAsPlainText:true,
              placeholder: 'Write your duties, tasks, and achievements on this jobasd here. You may also use our suggestions by clicking the "+" button.'
     }