mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:53:08 +02:00
13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
import Vue from 'vue';
|
|
|
|
import signin from './signin.vue';
|
|
import signup from './signup.vue';
|
|
import forkit from './forkit.vue';
|
|
import nav from './nav.vue';
|
|
import postHtml from './post-html';
|
|
|
|
Vue.component('mk-signin', signin);
|
|
Vue.component('mk-signup', signup);
|
|
Vue.component('mk-forkit', forkit);
|
|
Vue.component('mk-nav', nav);
|
|
Vue.component('mk-post-html', postHtml);
|