欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

我動(dòng)態(tài)得到的數(shù)據(jù)沒(méi)有& # 39;不要在順風(fēng)圖書(shū)館工作.我該怎么解決?

我將初始數(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>