upd: add basic search widget

Closes transfem-org/Sharkey#181
This commit is contained in:
Mar0xy 2023-11-30 23:45:13 +01:00
parent 90ddbc5dcd
commit 126b3839dd
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
7 changed files with 198 additions and 0 deletions

View file

@ -33,6 +33,7 @@ export default function(app: App) {
app.component('WidgetAichan', defineAsyncComponent(() => import('./WidgetAichan.vue')));
app.component('WidgetUserList', defineAsyncComponent(() => import('./WidgetUserList.vue')));
app.component('WidgetClicker', defineAsyncComponent(() => import('./WidgetClicker.vue')));
app.component('WidgetSearch', defineAsyncComponent(() => import('./WidgetSearch.vue')));
}
export const widgets = [
@ -63,4 +64,5 @@ export const widgets = [
'aichan',
'userList',
'clicker',
'search',
];