美文网首页
v-for循环中的question组件,通过props传给子组件

v-for循环中的question组件,通过props传给子组件

作者: 草原上的骆驼 | 来源:发表于2019-02-18 14:30 被阅读0次

v-for循环中的question组件,通过props传给子组件值时,子组件接受不到值。
<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>自定义指令</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">

<script src="js/flexible.js"></script>

<link rel="stylesheet" href="./css/index.css">

</head>

<body>

<div id="app">

<div class="questions">

        <div v-for="(item,index) in qtArr">

                <question :qtObj="item"></question>

        </div>

</div>

<script src="js/vue.min.js"></script>

<script>

//question component

    Vue.component('question', {

        props:{

            qtObj:{

            type:String,

            required:true

            }

    },

        template:` `,

        data() {

            return {

                dataObj:this.qtObj

        }

},

mounted(){

            console.log(this.qtObj);//打印出来一直是undefined 请大神指教

        }

})

var app =new Vue({

el:'#app',

data: {

page:1,

qtArr: [

{

num:1,

type:'radio',

title:'请问你的性别是?',

options: ["男","女"],

name:'sex',

},

{

num:2,

type:'checkbox',

title:'你喜欢的水果有哪些?',

options: ["apple","pear","banner","strawberry "],

name:'Fruit'

                },

{

num:3,

type:'text',

title:'简单介绍一下你自己吧!',

options: [],

name:'intro'

                }

],

},

})

</script>

</body>

</html>

相关文章

  • v-for循环中的question组件,通过props传给子组件

    v-for循环中的question组件,通过props传给子组件值时,子组件接受不到值。

  • react组件传值的几种方式

    react 组件传值一、父组件传给子组件父组件通过props传递给子组件; 二、子组件传给父组件父组件通过prop...

  • Vue组件间的参数传递

    1.父组件与子组件传值父组件传给子组件:子组件通过props方法接受数据;子组件传给父组件:$emit方法传递参数...

  • Vue组件之间的数据传递

    1、父子组件传递父组件传给子组件通过props方法接收参数子组件传给父组件:$emit方法传递参数2、非父子组件创...

  • react父子组件通信

    父组件通过props 给子组件传递数据,子组件则是通过调用父组件传给它的函数给父组件传递数据。

  • Vuex基础

    父子组件之间的通信,父组件通过props向子组件传递参数,子组件通过$emit将数据回传给父组件。但是如果我们有多...

  • (12)打鸡儿教你Vue.js

    组件 语法格式如下: 局部组件 父组件的数据需要通过 props 把数据传给子组件 使用 $on(eventNam...

  • react native组件通信方式

    1:父组件给子组件通过props2: 通过回调父组件传递一个函数 子组件将执行结果回传给父组件3:通过ref方...

  • Vue组件通讯

    (1)子访问父组件:props (2)父访问子组件:$emit (3)兄弟组件通信:子1传给父组件,父再传给子2 ...

  • react的组件通信

    父子组件通讯 通讯手段这是最常见的通信方式,父组件只需要将子组件需要的props传给子组件,子组件直接通过this...

网友评论

      本文标题:v-for循环中的question组件,通过props传给子组件

      本文链接:https://www.haomeiwen.com/subject/yjcpxqtx.html