methods(function概念)
<html>
<head>
<meta charset="utf-8">
<title>methods(function概念)</title>
</head>
<body>
<div id="show">
<p>{{ name }}</p>
<input type="button" value="變大寫吧" v-on:click="bigString()">
</div>
</body>
<script src="vue.js"></script>
<script>
new Vue({
el: '#show',
data: {
name: 'eagle'
},
methods: {
bigString: function () {
this.name = this.name.toUpperCase();
}
}
})
</script>
</html>