LoginSignup
6
1

More than 5 years have passed since last update.

Vue.jsで親要素のdataを触る時(v-show)

Last updated at Posted at 2016-04-22

リファレンスみても、あんまり合致するのなかったら
子要素からの呼び方をメモ。

親要素の中のhtmlの定義

<header id="header" v-show="ok"></header>

親要素のスクリプトのデータのとこ

<script>
  data(){
    return {
      ok: true,
    }
  }
</script>

みたいなんが定義されてたら

子要素のスクリプトに

<script>
ready(){
    this.$parent.ok = false;
}
</script>

みたいな感じで親要素のデータを変更できる。
できてみたら、簡単だけど迷った。

6
1
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
6
1