mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-17 07:27:36 -07:00
e3e4ee9553
* Missing translation
* use npx
* ✌️
* Update ja-JP.yml
* Update signup.vue
* Update ja-JP.yml
* Update messaging-room.vue
* Update ja-JP.yml
* Update signup.vue
* Update ja-JP.yml
* Update signin.vue
* Update ja-JP.yml
* Update index.vue
* Update ja-JP.yml
* Update signup.vue
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
export default ($root: any) => {
|
|
if ($root.$store.getters.isSignedIn) return;
|
|
|
|
$root.dialog({
|
|
title: $root.$t('signinRequired'),
|
|
text: null
|
|
});
|
|
|
|
throw new Error('signin required');
|
|
};
|