Rednas

Results 99 comments of Rednas

Sorry, just found it in the docs. Even possible with `setItem` I see. That's cool🚀 ![image](https://github.com/unjs/unstorage/assets/25219229/1bb2f24e-f6ec-4c7d-baa2-d943ad44907e) Not sure yet how to push to an array yet. Something like this ```...

Trick is not to select **@nuxt/ui** when calling `npx nuxi@latest init -t github:nuxt-ui-pro/dashboard` ![Image](https://github.com/user-attachments/assets/ce268517-b9db-4094-bc89-827e0c616b35) With **pnpm** it's also important to downgrade to v9 when using `@nuxt/content` to avoid the binding...

Sorry, looks like there is already support for it ![image](https://github.com/unjs/unstorage/assets/25219229/15f87a3a-4518-4c7f-a95f-0f66e2612b56) Another question. How can you declare a universal store that can be accessed everywhere? Tried something like **plugins/storage.ts** ``` import...

Succesfully migrated pinia to unStorage🥳. Fixed it by applying any to `useNuxtApp()` and moving it inside the composables ``` export async function save(iContent: string, iValue?: any) { const { $storage...

Also I would like to create some shortcuts for easier access. Something like **plugins/storage.ts** ``` return { provide: { init: init, storage: storage, codes: ref(await storage.getItem("codes")), // TODO shortcuts settings:...

Any thoughts?