feat(client): メニューからページをリロードできるように

This commit is contained in:
syuilo 2022-07-05 19:29:44 +09:00 committed by Chloe Kudryavtsev
parent ddab9eafee
commit d61a2f9009

View file

@ -191,4 +191,11 @@ export const menuDef = reactive({
}], ev.currentTarget ?? ev.target);
},
},
reload: {
title: 'reload',
icon: 'fas fa-refresh',
action: (ev) => {
location.reload();
},
},
});