caligari
caligari
when merging ???
Understood, thanks
Alive???
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 ``` 
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:  ```html ``` wa are have this...