summaryrefslogtreecommitdiff
path: root/packages/client/src/components/note-simple.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-01-14 10:25:51 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-01-14 10:25:51 +0900
commit28193f12ca0fd20544b0c9807661fb9a7e7c2a0e (patch)
tree97839b54fbec0e4e07c84e8ecbf8c939817bc94f /packages/client/src/components/note-simple.vue
parent:art: (diff)
downloadmisskey-28193f12ca0fd20544b0c9807661fb9a7e7c2a0e.tar.gz
misskey-28193f12ca0fd20544b0c9807661fb9a7e7c2a0e.tar.bz2
misskey-28193f12ca0fd20544b0c9807661fb9a7e7c2a0e.zip
wip: refactor(client): migrate paging components to composition api
Diffstat (limited to 'packages/client/src/components/note-simple.vue')
-rw-r--r--packages/client/src/components/note-simple.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/client/src/components/note-simple.vue b/packages/client/src/components/note-simple.vue
index 135f06602d..d8236a2096 100644
--- a/packages/client/src/components/note-simple.vue
+++ b/packages/client/src/components/note-simple.vue
@@ -9,7 +9,7 @@
<XCwButton v-model="showContent" :note="note"/>
</p>
<div v-show="note.cw == null || showContent" class="content">
- <XSubNote-content class="text" :note="note"/>
+ <MkNoteSubNoteContent class="text" :note="note"/>
</div>
</div>
</div>
@@ -19,14 +19,14 @@
<script lang="ts">
import { defineComponent } from 'vue';
import XNoteHeader from './note-header.vue';
-import XSubNoteContent from './sub-note-content.vue';
+import MkNoteSubNoteContent from './sub-note-content.vue';
import XCwButton from './cw-button.vue';
import * as os from '@/os';
export default defineComponent({
components: {
XNoteHeader,
- XSubNoteContent,
+ MkNoteSubNoteContent,
XCwButton,
},