最近在看父子元件通訊中遇到的一個問題?

咕咕嚕發表於2019-05-08

我在父元件中定義了一個事件@update:isShow="function(){}"

<template>
  <div>
    <input type="button" value="我是父元件中的按鈕" @click="show">
    <child
      v-show="isShow"
      @update:isShow="function(bol){
      isShow = bol;
      }"
    />
  </div>
</template>

現在我想列印一下匿名函式中bol的值,於是我在函式中加了console.log(bol);, 程式碼變成了下面這樣

<template>
  <div>
    <input type="button" value="我是父元件中的按鈕" @click="show">
    <child
      v-show="isShow"
      @update:isShow="function(bol){
      console.log(bol);
      isShow = bol;
      }"
    />
  </div>
</template>

但是報錯了,這是為什麼呢?

最近在看到.sync中遇到的一個問題?

相關文章