why cant show {{myGame}},the result should be 超級馬力歐 at first, and will change it when user press the button, but it didn't and it just show {{myGame}} . i dont know how to fix it , thank you !!!
let myApp = new vue({
el:'myApp',
data:{
myGame:'超級馬力歐'
},
methods:{
btnClick: function(pname){
this.myGame = pname;
},
},
});
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id="myApp" >
<p> 您最喜歡的遊戲是:{{myGame}}</p>
<button v-on:click="btnClick('我的世界')">我的世界</button>
<button v-on:click="btnClick('我的世界33')">我的世界33</button>
<button v-on:click="btnClick('我的世界44')">我的世界44</button>
<button @click="btnClick('我的世11界')">我的世11界</button>
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
</div>
</body>
</html>