问答详情
源自:2-6 v-if, v-show与v-for指令

为什么我的最大页面显示不出效果,错哪了

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>v-if,v-show,v-for  指令</title>

    <script src="./vue.js "></script>

</head>

<body>

<div id ="root">

    <div v-show="show">hello worla</div>

    <button @lick="handleClick"> toggle</button>


</div>

<script>

    new Vue ({

        el :"#root",

        data:{

            show:true     //false

        },

        methods :{

            handleClick :function () {

                this .show =!this .show;


            }

        }


    })

    //v-if指令  控制toggle的存在与否

    //v-show指令  控制toggle的显示与否

    //v-for指令  控制数据

</script>

</body>

</html>


提问者:weixin_慕少5316304 2019-08-07 11:44

个回答

  • qq_慕雪9032806
    2019-08-07 15:33:05
    已采纳

    <button @click="handleClick"> toggle</button>,click拼错,前台报错

  • VVVictory
    2019-08-14 15:09:01

    System.out.print