亲宝软件园·资讯

展开

vue computed和watch实例

wanglingli95 人气:0

需求:

实现代码(helloworld.vue实现代码):

<template>
 <!-- 准备好一个容器-->
		<div id="root">
			<h2>今天天气很{{info}}</h2>
			<button @click="changeWeather">切换天气</button>
		</div>
</template>
 
<script>
export default {
  name:'HelloWorld',
  data(){
    return{
      isHot:true,
    }
  },
  computed:{
    info(){
      return this.isHot ? '炎热' : '凉爽'
  methods: {
				changeWeather(){
					this.isHot = !this.isHot
				}
			},
  watch:{
    isHot(val){
      console.log("isHot被修改了,isHot值为:",val)
  }
}
</script>
<style>
</style>

注意:watch监听的对象都是在data()中已经定义好的数据。

加载全部内容

相关教程
猜你喜欢
用户评论