🍑

computed に引数を与えたい

2021/09/21に公開

code の例 1

const func = (key: string) => computed(() => (toggle.value === true ? key : 'false'))

code の例 2

こんなのでも与えられるらしい。

<template>
	{{ hoge('Momo') }}	
</template>
const hogehoge = (input: string) => input + '!!'
}
const hoge = computed(() => hogehoge)

Discussion