我將初始數(shù)據(jù)添加為一個(gè)類(lèi)。我對(duì)傳入的數(shù)據(jù)進(jìn)行了編碼,以刪除類(lèi)中存在的標(biāo)簽,但這不起作用。它也不會(huì)給出錯(cuò)誤。
import { useState } from "react";
export default function ShopList({ item, index }) {
const [checkValue,setCheckValue] = useState('');
return (
<div>
<div className="mb-[0.125rem] block min-h-[1.5rem] pl-[1.5rem]" data-index={index}>
<input type="checkbox" onChange={(e)=> setCheckValue(e.target.checked)} />
<label
className={`inline-block pl-[0.15rem] hover:cursor-pointer ${checkValue} true:line-through `}>
{item}
</label>
</div>
</div>
);
}
我該怎么解決?
我認(rèn)為你的支票價(jià)值有一個(gè)印刷錯(cuò)誤。
<label
className={`inline-block pl-[0.15rem] hover:cursor-pointer ${checkValue ? 'line-through' : ''} `}
>
{item}
</label>