vue: passing props down to all descendants

后端 未结 6 1162
夕颜
夕颜 2021-01-22 18:36

I have a parent component with the following line


6条回答
  •  天命终不由人
    2021-01-22 19:24

    Have you looked at vuex. It's really quite easy to use and allows you to store data for your entire app in a single data store. This means you don't have to keep passing data through props, you can just access variables set in the store.

    Here is a link to vuex docs (What is Vuex) https://vuex.vuejs.org

提交回复
热议问题