Hello all,
I am using kendo Editor.
<editor :resizable-content="true"
                    :resizable-toolbar="true"
                    v-model="footerBody"
                    style="height:280px;"
                    value=""
                    rows="10"
                    contenteditable="true"
                    cols="30"
                    ref="editor">
            </editor>
This one is going to have the default toolbar set.
What I want to do is to add one more tool to the default toolbar set.
What I have noticed is that when I set the tools like below, it is overwriting the default toolbar and putting there only the tools I put in the tools property. So, is there a way to add or remove a specific tool without altering and overwriting all the others from default?
<editor :resizable-content="true":resizable-toolbar="true"
v-model="footerBody"
style="height:280px;"
value=""
rows="10"
contenteditable="true"
cols="30"
ref="editor"
:tools="tools">
</editor>

