mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-15 05:45:42 +02:00
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
/*
|
|
* 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;
|
|
}
|