一 說點什麼
簡述: 因本身有前端基礎,又喜歡在實踐中獲得真知,故採用邊看邊動手的模式
二 開搞
1. 首先是vue檔案整體結構,一塊整結構,一塊整動作
<script setup> </script> <template> </template>
2. 來個ref()函式,構建一個物件,直接(物件.屬性)操作,java老開發狂喜
<script setup> import { ref } from 'vue' const message = ref('hello,world'); console.log(message.value) message.value = 'changed' //這一行濃濃的物件感 </script> <template> {{message}} //這引用變數,舒服 </template>