Skip to content

Commit 177048b

Browse files
committed
chore: cleanup
1 parent e99545d commit 177048b

File tree

3 files changed

+2
-38
lines changed

3 files changed

+2
-38
lines changed

src/blocks/decorator.vue

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,13 @@
7272

7373
<script>
7474
import { Blockable, blockProps } from "@/lib/blockable";
75-
import NotionMention from "@/blocks/mention";
75+
import NotionMention from "@/blocks/helpers/mention";
7676
7777
export default {
7878
extends: Blockable,
7979
name: "NotionDecorator",
8080
props: { ...blockProps, content: Array },
8181
components: { NotionMention },
82-
mounted() {
83-
console.log("content", this.content);
84-
console.log("decorators", this.decorators);
85-
console.log("decoratorValue", this.decoratorValue);
86-
console.log("isValueArray", this.isValueArray);
87-
},
8882
computed: {
8983
text() {
9084
return this.content?.[0];

src/blocks/mention.vue

Lines changed: 0 additions & 31 deletions
This file was deleted.

src/components/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export { default as NotionColumnSpacer } from "../blocks/helpers/column-spacer.v
2222
export { default as NotionFigure } from "../blocks/helpers/figure.vue";
2323
export { default as NotionFragment } from "../blocks/helpers/fragment.vue";
2424
export { default as NotionImage } from "../blocks/helpers/image.vue";
25+
export { default as NotionMention } from "../blocks/helpers/mention.vue";
2526
export { default as NotionNestedList } from "../blocks/helpers/nested-list.vue";
2627
export { default as NotionPageHeader } from "../blocks/helpers/page-header.vue";
2728
export { default as NotionPageIcon } from "../blocks/helpers/page-icon.vue";

0 commit comments

Comments
 (0)