2018-02-10 08:22:14 +01:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import signin from './signin.vue';
|
|
|
|
import signup from './signup.vue';
|
2018-02-11 04:08:43 +01:00
|
|
|
import forkit from './forkit.vue';
|
2018-02-11 04:42:02 +01:00
|
|
|
import nav from './nav.vue';
|
2018-02-11 15:26:35 +01:00
|
|
|
import postHtml from './post-html';
|
2018-02-13 04:32:00 +01:00
|
|
|
import reactionIcon from './reaction-icon.vue';
|
2018-02-10 08:22:14 +01:00
|
|
|
|
|
|
|
Vue.component('mk-signin', signin);
|
|
|
|
Vue.component('mk-signup', signup);
|
2018-02-11 04:08:43 +01:00
|
|
|
Vue.component('mk-forkit', forkit);
|
2018-02-11 04:42:02 +01:00
|
|
|
Vue.component('mk-nav', nav);
|
2018-02-11 15:26:35 +01:00
|
|
|
Vue.component('mk-post-html', postHtml);
|
2018-02-13 04:32:00 +01:00
|
|
|
Vue.component('mk-reaction-icon', reactionIcon);
|