Vue-Komponente "sw-text-editor" und buttonConfig

Tach zusammen,

anhand der Property „buttonConfig“ kann ich die Buttons der Komponente „sw-text-editor“ konfigurieren.
Soweit kein problem:

<sw-text-editor
    :buttonConfig="buttonConfig"
    ...
/>

Ich frag mich nun, warum wird mir immer der „Table“ Button angeziegt, was ich nicht möchte?

platform/src/Administration/Resources/app/administration/src/app/component/form/sw-text-editor/index.js:389

if (!this.$options.buttonConfig) {
    this.buttonConfig.push({
        type: 'table',
        title: this.$tc('sw-text-editor-toolbar.title.insert-table'),
        icon: 'default-text-editor-table',
        tag: 'table',
        expanded: false,
        handler: this.handleInsertTable,
    });
   ...

this.$options.buttonConfig ist immer undefined und somit wird mir der „Table“ Button angeziegt.
Wie entferne ich table?