1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-24 10:24:15 +02:00

enhnace(frontend): リロードのサジェストをダイアログではなくバナー表示に

This commit is contained in:
syuilo
2025-08-02 12:10:51 +09:00
parent 8449354887
commit fc244067e0
11 changed files with 105 additions and 58 deletions

View File

@@ -0,0 +1,12 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { ref } from 'vue';
export const shouldSuggestReload = ref(false);
export function suggestReload() {
shouldSuggestReload.value = true;
}