首頁 > 軟體

vue子元件如何使用父元件傳過來的值

2022-04-08 13:00:13

子元件使用父元件傳過來的值

父元件

<alarmstatistics :roless.sync="role"></alarmstatistics>
  import alarmstatistics from "./alarmstatistics.vue";
  components: {
    alarmstatistics,
  },

子元件

  props: ["roless"],
  
  data() {
    return {
      role:this.roless,
  },
  
  mounted() {
    if(this.role==3){
      this.chartY = "9.5%";
    }else{
      this.chartY = "18%";
    }
  },

如果是使用父元件介面返回來的值,在html中直接使用

  props: ["infoDatac"],
      <li
        v-for="(item,i) in infoDatac.notice.admitted"
        :key="'A'+ i"
      >
        <div>申請單號:{{ item.applyCode }}</div>
        <div>使用時間:{{ item.useTime }}</div>
        <span>{{ item.title }}</span>
      </li>

vue子元件呼叫父元件資料

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
        <script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body>
        <div class="" id="myVue">
            <my-component>
            </my-component>
        </div>
        <!--子元件-->
        <template id="child"  >
            <div id="">
                <div @click='changedata'>子元件:{{data}}</div>
            </div>
        </template>
        <!--父元件-->
        <template id="father">
            <div>
                <mycomponent-child v-bind:data="str"></mycomponent-child>
            </div>
        </template>
    </body>
    <script type="text/javascript" charset="utf-8">
        /*在父元件中的資料str,
         * 將父元件的資料繫結到子元件的屬性data上
         * 然後在子元件中就可以通過props接收到,
         * 這樣在子元件中就可以使用變數 this.data1存取到 父元件的 str1對應的值了。
         */
        //當點選子元件,觸發子元件的changedata方法,通過this.data = "父元件值被子元件修改了";改變了父級的str的值
        //通過  this.$parent.fn()存取父元件的方法fn()。
        var child={
            props:["data"],
            template:"#child",
            data:function(){
                return{
                    str:"我是子元件資料"
                }
            },
            methods:{
                changedata:function(){
                    this.data = "父元件值被子元件修改了";
                    this.$parent.fn();
                }
           }
        }
        
        /*父元件*/
        var father={
            template:"#father",
            data:function(){
                return{
                    str:"我是父元件資料"
                }
            },
            methods:{
                fn:function(){
                    alert("我是父元件方法")
                }
            },
            components:{
                "mycomponentChild":child
            }
        }
        
        vm=new Vue({
            //el:"#myVue",
            components:{
                "myComponent":father
            }
        }).$mount('#myVue');
        
    </script>
</html>

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。 


IT145.com E-mail:sddin#qq.com