Loading

ref的简单使用

<script setup>
    import { ref } from 'vue'
      const msg = ref(1)
      const clickMsg = () =>{ msg.value++; console.log('+++')}

      const clickMsgjj = () =>{ msg.value--; console.log('---')}
 
</script>

<template>
   <div>{{ msg }}</div><br>
   <button @click="clickMsg" >按钮++</button>
   <button @click="clickMsgjj" >按钮--</button>
</template>

<style scoped>
 
</style>

ref 可以让数据成为响应式

posted @ 2023-10-21 16:17  mingBolg  阅读(9)  评论(0编辑  收藏  举报