vue-父组件传递参数到子组件

Posted newandhui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-父组件传递参数到子组件相关的知识,希望对你有一定的参考价值。

案例:

父组件

<template>
  <div id="app">
    <h1>vuex</h1>
    <h3>count:{{count}}</h3>
    <button @click="count++">+1</button>
    <button @click="count--">-1</button>
    <!--父组件向子组件传递参数-->
    <hello-word :count2="count"></hello-word>
  </div>
</template>

<script>
  import HelloWord from "./components/HelloWord";
  export default {
    name: App,
    components:{
      HelloWord
    },
    data() {
      return{
        count: 0
      }
    }
  }
</script>

 

子组件

<template>
  <div>
    <h2>我是子组件</h2>
    <h3>count3:{{count2}}</h3>
  </div>
</template>

<script>
  export default {
    name: "HelloWord",
    props:{
      count2:Number
    }
  }
</script>

<style scoped>

</style>

 

以上是关于vue-父组件传递参数到子组件的主要内容,如果未能解决你的问题,请参考以下文章

将 vue 中的数据从单个父组件传递到子组件

从 Vue 的视角学 React—— 组件传参

详解vue父组件传递props异步数据到子组件的问题

vue父组件异步传递prop到子组件echarts画图问题踩坑总结

将数据从父模式传递到子模式 - Vue.js

Vue.js中子组件向父组件传递信息。