码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-04-04 22:21:58      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:com   scope   port   cli   vue   hello   import   component   from   

案例:

父组件

<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-父组件传递参数到子组件

标签:com   scope   port   cli   vue   hello   import   component   from   

原文地址:https://www.cnblogs.com/newAndHui/p/12634561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!