🍑
computed に引数を与えたい
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