VUE举例

<template>
  <div>count的值为:{{ count }}</div>
  <button @click="addCount">count+1</button>
  <button @click="addCountN(3, $event)">count+n</button>
</template>

<script setup>
import { ref } from 'vue'
const count = ref(1)
const addCount = event => {
  count.value++
  if (count.value % 2 === 0) {
    event.target.style.border = '3px dotted'
  } else {
    event.target.style.border = '3px solid'
  }
}

const addCountN = (n, event) => {
  count.value += n
  if (count.value % 2 === 0) {
    event.target.style.border = '3px dotted'
  } else {
    event.target.style.border = '3px solid'
  }
}

</script>

引入watch机制

<template>
  <input type="text" v-model="cityName" />
</template>

<script setup>
import { watch, ref } from 'vue'
const cityName = ref('beijing')
watch(cityName, (count, prevCount) => {
  console.log(count, prevCount)
})
</script>

reactive({对象})

<template>
  <div v-for="(value, name) in user" :key="name">
    属性名是:{{ name }} --- 属性值是:{{ value }}
  </div>
</template>

<script setup>
import { reactive } from 'vue'
const user = reactive({ id: 11, name: '小明', gender: '男', })

</script>
<style></style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值