需求:

  • 1.点击按钮实现天气的切换;
  • 2.用watch进行监视天气产生变化的数据;

实现代码(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()中已经定义好的数据。

到此这篇关于vue中computed和watch的综合运用实例的文章就介绍到这了,更多相关vue computed和watch运用实例内容请搜索阿兔在线工具以前的文章或继续浏览下面的相关文章希望大家以后多多支持阿兔在线工具!

点赞(0)

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部