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/dev/serve.vue b/dev/serve.vue
index 1a5cb41..19227b6 100644
--- a/dev/serve.vue
+++ b/dev/serve.vue
@@ -22,6 +22,7 @@ export default {
async created() {
// react-notion tester: 2e22de6b770e4166be301490f6ffd420
// equation tester: 2a1d5226d68246deba627012081693f9
+ // todo tester: 235057194b954a60ace89c052a65d102
this.blockMap = await getPageBlocks("2e22de6b770e4166be301490f6ffd420");
},
};
diff --git a/src/blocks/todo.vue b/src/blocks/todo.vue
new file mode 100644
index 0000000..0d997a0
--- /dev/null
+++ b/src/blocks/todo.vue
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
diff --git a/src/components/block.vue b/src/components/block.vue
index 50687bd..03d9ab0 100644
--- a/src/components/block.vue
+++ b/src/components/block.vue
@@ -1,6 +1,8 @@
-
+
+
+
+
@@ -32,7 +35,10 @@
v-bind="pass"
/>
- todo: {{ type }}
+
+ todo: {{ type }}
+
+
@@ -51,6 +57,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 +75,7 @@ export default {
NotionToggle,
NotionQuote,
NotionEquation,
+ NotionTodo,
},
};