66409029e7
* Update note-mixin.ts
* Update note-mixin.ts
* ✌️
* Update note-mixin.ts
* Update note-menu.vue
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
export default ($root: any) => {
|
|
if ($root.$store.getters.isSignedIn) return;
|
|
|
|
$root.dialog({
|
|
title: $root.$t('@.signin-required'),
|
|
text: null
|
|
});
|
|
|
|
throw new Error('signin required');
|
|
};
|