父子传递案例

父组件源码:

<template>
  <div class="hello">
    <!-- 父组件的值传到子组件来 -->
    <h1>{{ msg }}</h1>
    <button @click="change">点击改变子组件传过来的值</button>
    <!-- 这里用来接收子组件传过来的数组类型的值,加冒号是变量,不加是字符串 -->
    <OnE :str="str" :num="num" :boo="boo" :but="txt" :fn="fn1"></OnE>
    <h3>{{ stp }}</h3>
  </div>
</template>

<script>
// 引入子组件
import OnE from '@/components/OnE';

export default {
  components: {
    OnE
  },
  // 这里用来发送父组件需要传递的数据
  data() {
    return {
      str: '父组件传值给子组件,子组件反馈的是字符串类型',
      num: 123,
      boo: true,
      txt: '玉面飞龙',
      stp: ''
    }
  },
  methods: {
    change() {
      this.txt = '我是改变后的值'
    },
    fn1(str) {
      this.stp = str
      // console.log(this.stp);
    }
  },
  name: 'HelloWorld',
  // 父子传值的步骤:第二步:在子组件中, 使用 props 属性继承父组件的这个属性,  直接使用即可
  props: {
    msg: String
  }
}
</script>

<style scoped lang="scss">

</style>

子组件源码

<template>
    <div class="article">
        <h3>{{ str }}</h3>
        <h3>{{ num }}</h3>
        <h3>{{ boo }}</h3>
        <br>
        <!-- 父组件 HelloWorld传递的值是 : {{ but }} -->
        <h3>{{ but }}</h3>
        <br>
        <button @click="fn('我是从父组件方法中传过来的值')">点击按钮传递方法</button>
    </div>
</template>

<script>
export default {
    // 第一种方式:使用对象传值方法,但是要定义对象类型
    // props: {str: String,num: Number,boo: Boolean,but:String},
    // 第二种方式:使用数组传值方法,直接传值,两种方法只能取其一
    props: ['str', 'num', 'boo', 'but','fn',],
    data() {
        return {
        }
    }
}
</script>

<style lang="scss" scoped>
.article {
    width: 50rem;
    height: 20rem;
    margin: auto;
    border: 1px solid black;
}
</style>

报错:

新建一个文件,编辑器警告

方法一:

解决:

vue.config.js 中添加lintOnSave:false,复制粘贴完整代码

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave:true
})

如果方法一没有用,请用方法二

报错:

解决:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值