[Client] Split some components to reduce bundle size

This commit is contained in:
syuilo 2018-11-12 05:35:09 +09:00
parent fab389e624
commit 33e79e4bb8
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
19 changed files with 63 additions and 29 deletions

View file

@ -5,7 +5,6 @@ import note from './note.vue';
import notes from './notes.vue';
import mediaImage from './media-image.vue';
import mediaVideo from './media-video.vue';
import drive from './drive.vue';
import notePreview from './note-preview.vue';
import subNoteContent from './sub-note-content.vue';
import noteCard from './note-card.vue';
@ -29,7 +28,6 @@ Vue.component('mk-note', note);
Vue.component('mk-notes', notes);
Vue.component('mk-media-image', mediaImage);
Vue.component('mk-media-video', mediaVideo);
Vue.component('mk-drive', drive);
Vue.component('mk-note-preview', notePreview);
Vue.component('mk-sub-note-content', subNoteContent);
Vue.component('mk-note-card', noteCard);