2022
04-20
04-20
浅谈Vue的组件间传值(包括Vuex)
目录父传子:子传父:在不使用Vuex的情况下,组件间传值的方式是通过父传子的方式或者兄弟组件传值。父传子:fatherComponent:<template><div><HELLOWORLD:needData="content"></HELLOWORLD></div></template><script>importHELLOWORLDfrom'../components/HelloWorld.vue'exportdefault{components:{HELLOWORLD},data(){return{content:"content"}}}</scr...
继续阅读 >