1
type Items = string[]
const list = ref<Items>([])

const items = computed({
  get: () => list.value,
  set: (items: Items) => {
    list.value = items
  },
})

これは、セッターを使用して計算されたプロパティです。私の質問はRef<readonly string[]>、セッターを提供するとなぜ返されるのですか? アイテムにはタイプがあると思いますRef<string[]>

4

2 に答える 2