Vue学习之vue中的v-if,v-show,v-for
Posted twodoge
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue学习之vue中的v-if,v-show,v-for相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>vue</title>
<script src="vue.js"></script>
</head>
<body>
<!-- vue中的v-if,v-show,v-for
v-if:
v-show:display:none/block
v-for:
-->
<div id="root">
<div v-if="show">hello dog</div>
<button @click="handleClick">toggle</button>
<ul>
<li v-for="(item, index) of list" :key="index">{{item}}</li>
</ul>
</div>
<script>
new Vue({
el:"#root",
data:{
show: true,
list: [1,2,3]
},
methods: {
handleClick: function() {
this.show = !this.show
}
}
})
</script>
</body>
</html>
以上是关于Vue学习之vue中的v-if,v-show,v-for的主要内容,如果未能解决你的问题,请参考以下文章