Vue使用click控制v-show/v-if的简写方式?

<button v-click='btn'>按钮</button>

<div v-show="div">

   一个DIV

</div>


div:true;


btn(){

    this.div=!this.div

}

是不是有简写的方式可以直接控制呢?


蛊毒传说
浏览 3466回答 2
2回答

绝地无双

<template>&nbsp; <div>&nbsp; &nbsp; <button @click="visible = !visible">按钮</button>&nbsp; &nbsp; <div v-show="visible">&nbsp; &nbsp; &nbsp; 一个 DIV&nbsp; &nbsp; </div>&nbsp; </div></template>export default {&nbsp; data() {&nbsp; &nbsp; return {&nbsp; &nbsp; &nbsp; visible: false,&nbsp; &nbsp; };&nbsp; },}

隔江千里

@click= ,使用的语法糖 相当于 v-on:click=
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript