Rednas
Rednas
`` returns  **App.config.ts** ``` // https://github.com/nuxt-modules/icon#configuration-%EF%B8%8F export default defineAppConfig({ icon: { size: "300%", // default size applied class: "icon", // default class applied mode: "css", // svg || css...
Something like ``` store.patch({ count: store.count + 1, age: 120, name: 'DIO', }) ``` OR ``` store.patch((state) => { state.items.push({ name: 'shoes', quantity: 1 }) state.hasChanged = true }) ```
Something like `var stores = await useStorage.getItems() // Returns [store1: {value1: value}]` or to just get the store names `var stores = await useStorage.getItemsByName() // Returns [store1]` Similar to what...
Looks very interesting. Can't wait for the stable release. Can you also consider writing a nuxt module for easier setup? Can it work with all RPC servers? I am only...
I would like to try it with nuxt. Can the setup be done with **nuxt.config.ts**? Tried: ``` import { doctest } from 'vite-plugin-doctest'; export default defineNuxtConfig({ plugins: [doctest({ /* options...
### Environment ------------------------------ - Operating System: Windows_NT - Node Version: v20.12.2 - Nuxt Version: 3.13.0 - CLI Version: 3.12.0 - Nitro Version: 2.9.7 - Package Manager: [email protected] - Builder: -...
I have a simple `connect` function and I would like it to return the session. But I am getting  Is there a way to avoid this error? **plc.server.ts** ```...
I am getting  Can you also make the module available as an ecmascript module to support `import`? It was introduced in 2015 and has become pretty much become the...
Usually I fetched the different icons with something like. ``` var icons = import.meta.glob(`.././assets/*.svg`, { as: "raw", eager: true }) for (const item in icons) { body.innerHTML = icons[item] let...
Something like ``` {{ counter }} // const await storage.getItem("counter") // Only returns the value const counter = useStore('counter') // QUESTION: How to return a reactive store that can be...