diff --git a/README.md b/README.md index 9ada2ac..6e75779 100644 --- a/README.md +++ b/README.md @@ -187,8 +187,8 @@ Most common block types are supported. We happily accept pull requests to add su | Page Links | ✅ Yes | | | Cover | ✅ Yes | Enable with `fullPage` | | Equations | ✅ Yes | | +| Checkbox | ✅ Yes | | | Databases | ❌ Not planned | | -| Checkbox | ❌ Not planned | | | Table Of Contents | ❌ Not planned | | Please, feel free to [open an issue](https://github.com/janniks/vue-notion/issues/new) if you notice any important blocks missing or anything wrong with existing blocks. diff --git a/src/blocks/todo.vue b/src/blocks/todo.vue new file mode 100644 index 0000000..c2ffb3d --- /dev/null +++ b/src/blocks/todo.vue @@ -0,0 +1,21 @@ + + + \ No newline at end of file diff --git a/src/components/block.vue b/src/components/block.vue index 50687bd..924b9da 100644 --- a/src/components/block.vue +++ b/src/components/block.vue @@ -1,17 +1,17 @@ @@ -51,6 +48,7 @@ import NotionText from "@/blocks/text"; import NotionToggle from "@/blocks/toggle"; import NotionQuote from "@/blocks/quote"; import NotionEquation from "@/blocks/equation"; +import NotionTodo from "@/blocks/todo"; export default { extends: Blockable, @@ -68,6 +66,7 @@ export default { NotionToggle, NotionQuote, NotionEquation, + NotionTodo, }, };