我在父元件中定義了一個事件@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>
但是報錯了,這是為什麼呢?