From 1a1c4875a1a9ee23f4aab0a479cda2ae8ba430c5 Mon Sep 17 00:00:00 2001 From: axolotle Date: Tue, 22 Jun 2021 22:29:37 +0200 Subject: [PATCH] add NodeViewTitle component --- src/components/nodes/NodeViewTitle.vue | 73 ++++++++++++++++++++++++++ src/components/nodes/index.js | 1 + 2 files changed, 74 insertions(+) create mode 100644 src/components/nodes/NodeViewTitle.vue diff --git a/src/components/nodes/NodeViewTitle.vue b/src/components/nodes/NodeViewTitle.vue new file mode 100644 index 0000000..d4f5b2f --- /dev/null +++ b/src/components/nodes/NodeViewTitle.vue @@ -0,0 +1,73 @@ + + + + + diff --git a/src/components/nodes/index.js b/src/components/nodes/index.js index 8a02b00..7e1593c 100644 --- a/src/components/nodes/index.js +++ b/src/components/nodes/index.js @@ -1,4 +1,5 @@ export { default as NodeViewChildList } from './NodeViewChildList' +export { default as NodeViewTitle } from './NodeViewTitle' export { default as NodeViewHeaderRef } from './NodeViewHeaderRef' export { default as NodeViewHeaderProd } from './NodeViewHeaderProd' export { default as NodeViewBody } from './NodeViewBody'