feat(client): add user list widget

This commit is contained in:
syuilo 2022-12-26 10:29:47 +09:00
parent c7350c3839
commit 6acc10b4ba
4 changed files with 142 additions and 0 deletions

View file

@ -23,6 +23,7 @@ export default function(app: App) {
app.component('MkwButton', defineAsyncComponent(() => import('./button.vue')));
app.component('MkwAiscript', defineAsyncComponent(() => import('./aiscript.vue')));
app.component('MkwAichan', defineAsyncComponent(() => import('./aichan.vue')));
app.component('MkwUserList', defineAsyncComponent(() => import('./user-list.vue')));
}
export const widgets = [
@ -48,4 +49,5 @@ export const widgets = [
'button',
'aiscript',
'aichan',
'userList',
];