I’m havin a parent component, let’s say “1”, it has 2 child components, “2” and “3”, each one of this components has one child component, “4” for “2” and “5” for “3”. So the question is how to pass state from the child component “5” to last component “4” ? Probably should I use composables approach? Could you show me an example?
How to organise sending data with script setup vue 3? With probably composables touch
100 Views Asked by Ron At
2
There are 2 best solutions below
3
Nobsyde
On
You don't need to use Pinia, you can create a "store" as simply as this:
// on a new storeName.js file
import { ref } from 'vue'
export const myStore = ref('')
and then import myStore on whichever component might need it, either to update it (e.g. on your component 5) or just to check its value (e.g. on your component 4). Once you change the value of myStore anywhere, it will be updated on every component. That's it!
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in VUE.JS
- Problems with matter.js and i18n in vue.js
- Form Validation not working in custom component Vue
- Authenticating vue app on each route change
- Vue/TailwindCSS - Content is behind Sidebar
- Vue3 Suspense Parent > Child Animation
- Pass dynamic object data via nuxt-link to component
- Failed to resolve import, but the path is valid, and detected as such by VSCode
- how to use less variables in vue components?
- Prevent a webpage from navigating away
- Creating a modal window in product edit page in Shopware6 and saving data to custom table(repository) from a form within the modal window
- How do I fix (or ignore) a TypeScript error that's inside a HTML template?
- Vue.js Checkbox Alignment Issue: Centering Checkboxes Within Table Cells
- How to reset vue product filter?
- Vue display output of two dimensional array
- vue js error when adding bonus items to another item
Related Questions in VUE-PROPS
- Pass dynamic object data via nuxt-link to component
- Vuejs child component props does not update when parent component update props value
- In Vue3's compositional API, how can I v-bind a dynamic group of props to a child component and not lose reactivity?
- Passing object with reactive properties as a prop triggers child component onUpdated hook when updating parent component state
- Vuejs basic structure type of props does not pass the Object
- Is it possible to pass a background image as prop from the Tailwind CSS config?
- Vue.js 3 SFC multiple lists
- How to properly wait for props in child component from parent
- How to Pass value to Non Nested components in Vue 3 composition Api
- Prop with default value gets undefined type in Vue 2
- Vue.js 3 SFC Prop
- Pass prop to persistent layout
- Provide and inject multiple properties and multiple functions that mutates multiple properties
- Vue - parent component needs to check the value of a prop in the child component before doing something (Conditional assignment)
- Toggle Button With Props & emit
Related Questions in EMIT
- Updating html content and redirecting all users connected to flask app server simmultaneously
- Return data in emit livewire
- Flask and pyaudio entegras
- Update model value doesn't work correctly
- How to organise sending data with script setup vue 3? With probably composables touch
- Why the behaviour of $emit with asnyc in vue2 is not same with the normal function?
- How to emit Tauri backend (rust) event from new thread spawn outside of Builder?
- Send progress data from a Flask server to the browser client using emit and multiprocessing/multithreading
- why the client side catch the socket.emit after delay from the server side?
- flask_socketio sometimes fail to emit after deployed on Heroku
- vue.js @emit is not picked up by parent
- How to send header in one microservice to another microservice without changing payload in NestJs?
- Why can't I toggle the radio button
- How to make a proper emit of the modelValue with vue3 using props?
- Vue3 - Uncaught TypeError: n2 is not a function - emit
Related Questions in COMPOSABLE
- Why do I get 'Failed to instantiate a ViewModel' when passing ViewModel class as an argument to a composable?
- how to enable @Preview for compose multiplatform for IOS?
- vue3 & typescript composables and returning array values
- Motion Event Implementation: Can't detect another sequential touch
- How to initialize an interface for viewmodel in a @Preview @Composable
- Wait on async function to complete in a Vue composable before reading it's contents
- Golang - Reusing custom composable methods from structs around map type
- Composables advantages and vs global functions
- How to create a scroll bar for visual effect when using .verticalScroll or .horizontalScroll in a Column or Row Composable?
- Whether to use nested function for better readability in composables or not?
- Run timer using composable architecture iOS
- How to use @Preview with compose function that takes a param?
- Load API based drawable in Compose
- Adding lists of Composables?
- getting error @Composable invocations can only happen from the context of a @Composable function | composable inside pointerInput
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If your components are used only together there's a standard way to provide data for a component hierarchy:
https://vuejs.org/guide/components/provide-inject
Also it's more flexible than using a store or a shared module variable (suggested by Nobsyde) since you can swap the top most component with another with the same provides and your descendant will work with them too. Your components should only agree with what provides they will work together.
You can set default values for injected provides so your components could work outside the hierarchy or with some changed provides' list. So your components could be context sensitive.
Another way to share data between sibling components is scoped slots: How to use data from one component in another component vuejs