感興趣可以關注我的公眾號啊《人生代碼》

refs
接受一個值,回傳一個回應式并且可變的 ref 物件,ref 物件具有指向值的單個屬性的值,
示例:
<template>
<div>
{
{ count }}
</div>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
const count = ref(0)
console.log(count.value) // 0
count.value++
console.log(count.value) // 1
retu
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/232592.html
標籤:其他
