0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vue.jsコンポーネント間の通信【クラス属性、id属性の受け渡し】

Last updated at Posted at 2019-11-07

はじめに

先日の記事に引き続き、
コンポーネント間の通信についてまとめます。今回はコンポーネントを呼び出す際にid属性とクラス属性を付与するとどんな挙動になるのか調べました。

完成コード

*見やすさ考慮してbodyタグの中しか書きません。

index.html
<div id="app" class='box'>
        <p>my-componentの呼び出し</p><my-component></my-component>
        <hr>    
        <p>comp-childの呼び出し</p><comp-child id="parent" class="parent"></comp-child>
    </div>

次にJSです。

main.js
Vue.component('my-component',{
    template:'<p><comp-child id="parent" class="parent" v-bind:val="message"></comp-child></p>',
    data:function(){
        return{
            message:'my-component'
        }
    },
    props:['val']
})
Vue.component('comp-child',{
    template:'<p id="child" class="child">{{message}}/{{val}}</p>',
    data:function(){
        return{
            message:'child-comp'
        }
    },
    props:['val']
})

  new Vue({
    el:'#app',
    data: {

    }
  })

実行結果

スクリーンショット 2019-11-07 22.48.17.png

child-comp/my-componentとchild-compを出力しているPタグ内のid属性とclass属性に注目しておいてください。

解説

my-componentの呼び出しから辿っていきましょう。

index.html
<p>my-componentの呼び出し</p><my-component></my-component>

html内で普通に記述しています。そして呼び出されたコンポーネントの中身を見ます。

main.js
Vue.component('my-component',{
    template:'<p><comp-child id="parent" class="parent" v-bind:val="message"></comp-child></p>',
    data:function(){
        return{
            message:'my-component'
        }
    },
    props:['val']
})

template:'<p><comp-child id="parent" class="parent" v-bind:val="message"></comp-child></p>'に注目です。
comp-childを呼び出す際にid="parent" class="parent" を付与しています。
そこで今度はcomp-childを見ていきましょう。

main.js
Vue.component('comp-child',{
    template:'<p id="child" class="child">{{message}}/{{val}}</p>',
    data:function(){
        return{
            message:'child-comp'
        }
    },
    props:['val']
})

今度はtemplate内のPタグ内で<p id="child" class="child">{{message}}/{{val}}</p>'と別のid属性とクラス属性を指定しています。

すると結果、、、
スクリーンショット 2019-11-07 23.01.42.png

id属性はコンポーネント内でchildとしているにも関わらず親コンポーネント内で付与したparentに上書きされ、クラス属性についてはどちらも適用されました。

comp-childについては、html内で同様に定義すると処理内容はmy-componentのtemplateと同じ動きをするため、説明は省略します。

最後まで読んでいただきありがとうございました。

追記:id属性とクラス属性の引き渡しについてはpropsは使っていません。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?