docs: update content

This commit is contained in:
Hans Pagel
2021-03-23 23:15:02 +01:00
parent e1df758b94
commit 220165d142
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div v-if="editor">
<button @click="editor.chain().focus().toggleTaskList().run()" :class="{ 'is-active': editor.isActive('task_list') }">
<button @click="editor.chain().focus().toggleTaskList().run()" :class="{ 'is-active': editor.isActive('taskList') }">
task list
</button>

View File

@@ -56,7 +56,7 @@ new Editor({
})
```
### Configure an extensions
### Configure extensions
Most extensions can be configured. Add a `.configure()` to pass an object to it. The following example will disable the default heading levels 4, 5 and 6:
```js