Vue監(jiān)視屬性天氣案例

<!DOCTYPE html>

<html>

<head>

? ? <meta charset="UTF-8" />

? ? <title>天氣案例_監(jiān)視屬性</title>

? ? <!-- 引入Vue -->

? ? <script type="text/javascript" src="../js/vue.js"></script>

</head>

<body>

? ? <div id="root">

? ? ? ? <h2>今天天氣很{{info}}</h2>

? ? ? ? <button @click="changeWeather">切換天氣</button>

? ? ? ? <hr>

? ? ? ? <h3>a的值是:{{numbers.a}}</h3>

? ? ? ? <button @click="numbers.a++">點(diǎn)我讓a+1</button>

? ? </div>

</body>

<script type="text/javascript">

? ? Vue.config.productionTip = false

? ? const vm = new Vue({

? ? ? ? el: '#root',

? ? ? ? data: {

? ? ? ? ? ? isHot: true,

? ? ? ? ? ? numbers:{

? ? ? ? ? ? ? ? a:1,

? ? ? ? ? ? ? ? b:1

? ? ? ? ? ? }

? ? ? ? },

? ? ? ? computed: {

? ? ? ? ? ? info() {

? ? ? ? ? ? ? ? return this.isHot ? '炎熱' : '涼爽'

? ? ? ? ? ? }

? ? ? ? },

? ? ? ? methods: {

? ? ? ? ? ? changeWeather() {

? ? ? ? ? ? ? ? this.isHot = !this.isHot

? ? ? ? ? ? }

? ? ? ? },

? ? ? ? watch:{

? ? ? ? ? ? //正常寫法

? ? ? ? ? /*? isHot:{

? ? ? ? ? ? ? ? handler(newValue,oldValue){

? ? ? ? ? ? ? ? ? ? console.log('isHot被修改了',newValue,oldValue)

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }, */

? ? ? ? ? ? isHot(newValue,oldValue){

? ? ? ? ? ? ? ? console.log('asdasdasd')

? ? ? ? ? ? }


? ? ? ? }

? ? })

? ? vm.$watch('isHot',function(newValue,oldValue){

? ? ? ? ? ? ? ? console.log('asdasdasd')

? ? ? ? ? ? })

</script>

</html>

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容