Vue實現簡單加法計算


<!DOCTYPE html>
<html lang="zh">
<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></title>
</head>
<body>
	<div id="app">
		<div>
			數值A:<input type="" name="" id="" v-model="a" />
		</div>
		<div>
			數值B:<input type="" name="" id="" v-model="b" />
		</div>
		<button type="button" @click="add">計算</button><br>
		<span>計算結果:</span>
		<span>{{this.c}}</span>
	</div>
	<!-- 引入vue.js文件 -->
	<script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
	<script type="text/javascript">
		new Vue({
			el:'#app',
			data() {
				return { 
					a:'',
					b:'',
					c:''
				}
			},
			methods:{
				add() {
					this.c = Number(this.a) + Number(this.b)
				}
			}
		})
	</script>
</body>
</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM