Does Vue use click to control the abbreviation of v-show/v-if?

<button v-click="btn"></button>
<div v-show="div">
   DIV
</div>

div:true;

btn(){
    this.div=!this.div
}
Is there an abbreviated way to control

directly?

Mar.03,2021

@ click=. The syntactic sugar used is equivalent to Vmuron click= Click =



       DIV
    </div>
  </div>
</template>
export default {
  data() {
    return {
      visible: false,
    };
  },
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3914c-2b4ca.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3914c-2b4ca.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?