2 Star 31 Fork 5

写hello world都有bug/B站黑马vue入门及笔记wustudy-vue1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
8.v-if.html 818 Bytes
一键复制 编辑 原始数据 按行查看 历史
wuyuyang_bklyyds 提交于 2021-10-31 19:07 . Vue study
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<input type="button" value="切换显示" @click="change">
<p v-if="true">我是一个p标签</p>
<p v-if="isShow">我是一个p标签</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
var app=new Vue({
el:"#app",
data:{
isShow:false
},
methods:{
change:function(){
this.isShow=!this.isShow;
}
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/wuyuyang_bklyyds/wustudy.git
git@gitee.com:wuyuyang_bklyyds/wustudy.git
wuyuyang_bklyyds
wustudy
B站黑马vue入门及笔记wustudy-vue1
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385