在 setup 中聲明函數共有 4 種方式:直接聲明函數使用 vue.reactive 創建可變響應式對象使用 vue.computed 創建計算屬性使用 vue.watch 創建偵聽器
Vue 中在 setup 中聲明函數
在 Vue 3.0 中,setup 函數提供了聲明響應式狀態、計算屬性和方法的新方式。以下是如何在 setup 中聲明函數:
直接聲明函數
import { defineProps } from '<a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/15721.html" target="_blank">vue</a>' export default { props: defineProps(['count']), setup() { function incrementCount() { // ... } // 其他邏輯... return { // ...其他響應式狀態 incrementCount } } }
登錄后復制
使用Vue.reactive創建可變響應式對象
import { defineProps, reactive } from 'vue' export default { props: defineProps(['count']), setup() { const state = reactive({ count: 0, increment: function() { // ... } }) // 其他邏輯... return { // ...其他響應式狀態 ...state } } }
登錄后復制
使用Vue.computed創建計算屬性
import { defineProps, computed } from 'vue' export default { props: defineProps(['count']), setup() { const incrementCount = computed(() => { // ... }) // 其他邏輯... return { // ...其他響應式狀態 incrementCount } } }
登錄后復制
使用Vue.watch創建偵聽器
import { defineProps, watch } from 'vue' export default { props: defineProps(['count']), setup() { const incrementCount = watch('count', (newValue, oldValue) => { // ... }) // 其他邏輯... return { // ...其他響應式狀態 incrementCount } } }
登錄后復制
通過這些方法,可以在 Vue 3.0 的 setup 函數中以響應式的方式聲明函數。