blob: f1888f721eb8cf1f9f38fd5e1b51c51186182729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}
|