開發中遇到的bug-Property or method “xxxx“ is not defined on the instance but referenced during render.
method沒加s加上就好了
<body>
<div id="app">
<button @click="sub">-</button>
<span>{{code}}</span>
<button @click="add">+</button>
</div>
<script>
var app = new Vue({
el: "#app",
data: {
code: 0
},
methods: {
add: function () {
if (this.code < 10) {
this.code++;
} else {
alert('到頭啦!不要再加啦');
}
},
sub: function () {
if (this.code > 0) {
this.code--;
} else {
alert('到頭啦!不要再減啦');
}
}
}
})
</script>
</body>
相關文章
- 開發中遇到的錯誤
- RAC Instance Crashes During Startup Due To Error 495Error
- JPA 開發中遇到的錯誤
- MERGE開發中遇到的問題
- iOS 開發中遇到的手勢衝突iOS
- IOS日常開發中遇到的小問題iOS
- React開發中遇到的問題總結React
- 開發中遇到的float double精度問題
- IOS開發中遇到過的各種坑洞iOS
- Restricting a Method to Class-Only o Instance-OnlyREST
- Non-static method 'save(java.long.Object)' cannot be referenced from a static context.JavaObjectContext
- 使用java.lang.reflect.Method遇到的問題Java
- android開發過程中遇到的問題Android
- iOS開發中遇到的那些坑,持續更新iOS
- 使用ElementUI開發系統(介紹與開發中遇到的問題)UI
- Python中的methodPython
- Flutter開發過程中遇到的問題記錄Flutter
- [微信小程式]開發中遇到的一些“坑”微信小程式
- 嵌入式軟硬體開發中遇到的坑
- 微信小程式開發中遇到的幾個小問題微信小程式
- 皮膚開發過程中遇到的3個問題
- iOS 開發中遇到的一些證書問題iOS
- 開發遇到的坑之blockBloC
- 【iOS開發】扯淡 Method SwizzlingiOS
- Laravel 路由學習 - 遇到問題,報錯:Route [home] not definedLaravel路由
- 微信和支付寶的支付流程,以及開發中遇到的坑?
- 軟體開發中會遇到的幾種實用圖例
- 前端開發中遇到的一些問題----持續更新前端
- 關於藍芽bluetooth開發中遇到的DeadObjectException異常藍芽ObjectException
- 微信小程式開發中遇到的問題及解決方式微信小程式
- 小弟在struts+hibernate的開發中遇到難題。求救!!
- Springboot 開發過程中遇到坑點 (一)Spring Boot
- 開發過程中遇到問題該怎麼辦?
- iOS開發中遇到BAD_ACCESS怎麼辦?iOS
- java程式碼中init method和destroy method的三種使用方式Java
- php中defined與define()函式PHP函式
- 進擊的 Vulkan 移動開發之 Instance & Device & Queue移動開發dev
- 座談-Web開發中你所遇到的效能問題(大獎)Web