caligari

Results 11 comments of caligari

Hello. I try and its work for me ```vue import { PostsModal } from '#components'; const modal = useModal() const posts = ref([ { id: 1, title: 'Title1' }, {...

this works fine https://stackblitz.com/edit/github-hpn25g-oehbpx i change this func ```js async function postsRefresh(updatedPost) { posts.value = posts.value.map((item) => { if (item.id === updatedPost.id) { return updatedPost; } return item; }); }...

hmmm... maybe i dont understand, sorry. In my production i use websockets and change array with forEach method `refresh` method not my chose :/

I experement with your code ```js async function postsRefresh(updatedPost) { posts.value = posts.value.map((item) => { if (item.id === updatedPost.id) { return updatedPost; } else { return item; } }); console.log(posts.value)...

try this ```html ``` ![image](https://github.com/user-attachments/assets/83dc09c1-6633-4d6f-b2e5-d5237f7662f2)

justi use raw method https://strapi-plugin-io.netlify.app/api/io-class.html#raw

hello. its problem strategy https://ui.nuxt.com/getting-started/theming#components so i have next config: ```js notifications: { position: 'top-0 right-0' }, ``` take a look generated template: ![image](https://github.com/user-attachments/assets/e8b2bf65-259a-40bb-a054-a1ba69dc19d2) ```html ``` wa are have this...