为了账号安全,请及时绑定邮箱和手机立即绑定

vue父子传值, 如何用computed接收并操作数据?

vue父子传值, 如何用computed接收并操作数据?

ABOUTYOU 2019-01-30 09:35:42
父子传值传值, 如何用computed接收并操作数据?父组件// 父组件下面的子组件<Current       :status="orderID"/>data() {    return {       orderID: '',     }; }, methods: {  // 该事件是从另外一个子组件传值过来的, 接收值之后传给另外一个子组件使用   getOrderID(orderID) {    this.orderID = orderID;   }, },子组件props: {     status: {      type: String,      default: String,     }, },// computed如何来操作子组件已经从父组件传值成功
查看完整描述

1 回答

?
郎朗坤

TA贡献1921条经验 获得超9个赞

<template>
  <div>{{statusText}}</div></template><script>export default {  props: {    status: {      type: String,      default: String
    }
  },  components: {},
  data () {    return {}
  },  computed: {
    statusText () {      console.log(this.status)      if (this.status === '1234') {        return '哈哈哈哈'
      }
    }
  },
  created () {
  },  methods: {}
}</script>



查看完整回答
反对 回复 2019-01-30
  • 1 回答
  • 0 关注
  • 1425 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信