vue组件传值:父传子 props

案例-表格渲染

如图:将A页面(父)传到 B页面(子)

A页面引入B组件显示
在这里插入图片描述
具体写法:
在这里插入图片描述
代码如下:
A页面(父组件)

<tableChild :tableDataChild = "tableData"></tableChild>
<!-- <tableChild :tableData= "tableData"></tableChild> -->
import tableChild  from "./tableModule";
export default {
  name: "moduleByValueIndex",
  components: {
    tableChild
  },
  data() {
    return {
       tableData: [{
          date: '2016-05-02',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1518 弄'
        }, {
          date: '2016-05-04',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1517 弄'
        }, {
          date: '2016-05-01',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1519 弄'
        }, {
          date: '2016-05-03',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1516 弄'
        }]
    };
  },

B页面(子组件)

<table>
        <thead>
            <th>序号</th>
            <th>日期</th>
            <th>姓名</th>
            <th>地址</th>
        </thead>
        <!-- v-for="(item,idx) in tableData" -->
        <tr v-for="(item,idx) in tableDataChild" :key="idx">
            <td>{{idx + 1}}</td>
            <td>{{item.date}}</td>
            <td>{{item.name}}</td>
            <td>{{item.address}}</td>
        </tr>
    </table>
export default {
  name: "tableModule",
  props: {
    tableDataChild: {
      type: Array,
      default: () => [],
    },
  },
  //props:["tableData"]
  data() {
    return {};
  },
};

传递数据注意

  1. props 只用于父组件向子组件传递数据
  2. 所有标签属性都会成为组件对象的属性, 模板页面可以直接引用
  3. 如果需要向非子后代传递数据,必须多层逐层传递或采用非父子传值方法,例如 总线方式
  4. 兄弟组件间也不能直接 props 通信, 必须借助父组件才可以
  5. props传递的类型和写法
  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
Vue中,组件组件递数据是通过props来实现的。而组件组件递数据,则需要通过自定义事件来实现。 首先,在组件中,通过props属性将数据递给组件。可以在组件标签上使用v-bind指令来动态绑定组件的数据,或者直接在组件标签上写入固定的。 例如,在组件中定义一个名为message的prop,并将一个字符串递给组件: ```vue <template> <div> <child-component :message="parentMessage"></child-component> </div> </template> <script> import ChildComponent from './ChildComponent.vue'; export default { components: { ChildComponent }, data() { return { parentMessage: 'Hello from parent' }; } }; </script> ``` 然后,在组件中,可以通过props属性接收组件递过来的数据,并在模板中使用该数据。 ```vue <template> <div> <p>{{ message }}</p> <button @click="sendMessageToParent">Send Message to Parent</button> </div> </template> <script> export default { props: ['message'], methods: { sendMessageToParent() { this.$emit('custom-event', 'Message from child'); } } }; </script> ``` 在组件中,可以使用`props`属性声明接收的属性名,然后在模板中直接使用即可。另外,如果需要向组件发送数据,可以使用`$emit`方法触发一个自定义事件,并递需要发送的数据。 最后,在组件中,可以通过在组件标签上监听自定义事件来接收组件递的数据。 ```vue <template> <div> <child-component :message="parentMessage" @custom-event="receiveMessageFromChild"></child-component> <p>Message received from child: {{ childMessage }}</p> </div> </template> <script> import ChildComponent from './ChildComponent.vue'; export default { components: { ChildComponent }, data() { return { parentMessage: 'Hello from parent', childMessage: '' }; }, methods: { receiveMessageFromChild(message) { this.childMessage = message; } } }; </script> ``` 这样,就完成了组件组件递数据的过程。当组件中的按钮被点击时,将会触发`custom-event`事件,并将消息发送给组件组件接收到消息后,将其保存在`childMessage`变量中,并在模板中进行展示。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值