Rednas

Results 59 issues of Rednas

`` returns ![image](https://github.com/nuxt/icon/assets/25219229/10fcdec3-bbf1-45e6-96c5-93fd76a79d4d) **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 ![image](https://github.com/user-attachments/assets/bf6712de-8f11-4885-a855-028113a5b31f) Is there a way to avoid this error? **plc.server.ts** ```...

discussion

I am getting ![](https://github.com/user-attachments/assets/c8fe5334-ea91-48ee-8098-65ee41bd3f9d) 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...

Sponsors wanted !

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...

enhancement