c2d5a96bb6
* 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>
11 lines
192 B
TypeScript
11 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');
|
|
};
|