Files
einundzwanzig-portal/resources/js/nostr/nostrStart.js
HolgerHatGarKeineNode b489f98c2a load user
2023-11-20 18:54:53 +01:00

20 lines
310 B
JavaScript

import {ndkInstance} from "./ndk/instance.js";
export default (livewireComponent) => ({
async init() {
await ndkInstance(this).init();
console.log(this.$store.ndk.user);
if (this.$store.ndk.user) {
this.$wire.setUser(this.$store.ndk.user);
}
},
});