【发布时间】:2019-08-07 13:58:45
【问题描述】:
我最近了解vue
我有这个文件index.html
<!DOCTYPE html>
<html>
<head>
<title>Learning Vue Js</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="root">
<button @click="show = !show">Toggle</button>
<div class="foo" v-show="ok">
<p>ok</p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script type="text/javascript">
var app = new Vue({
el: "#root",
data: {
ok: false
}
});
</script>
</body>
</html>
【问题讨论】:
-
ok在data中有明确定义,但show没有。