Add button widget

This commit is contained in:
syuilo
2020-12-27 23:13:01 +09:00
parent b002651194
commit ea6aa40b09
3 changed files with 97 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ export default function(app: App) {
app.component('MkwFederation', defineAsyncComponent(() => import('./federation.vue')));
app.component('MkwPostForm', defineAsyncComponent(() => import('./post-form.vue')));
app.component('MkwSlideshow', defineAsyncComponent(() => import('./slideshow.vue')));
app.component('MkwButton', defineAsyncComponent(() => import('./button.vue')));
}
export const widgets = [
@@ -30,4 +31,5 @@ export const widgets = [
'federation',
'postForm',
'slideshow',
'button',
];