일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- pm2 시작
- allow_anonymouse
- pm2 확인
- mosquitto.conf
- vite
- setInterval 외부 정지
- setInterval 중지
- pm2
- pm2 상태 확인
- 맥 어드레스
- listener 1883
- setInterval clear
- c# datagridview 데이터 넣기
- 1883
- timepicker
- DataGridView 직접 입력
- 서버동기화
- 데이터테이블 데이터 넣기
- pm2 설치
- mosquitto
- AntDesign
- html #select #option #multiple
- tailwind
- mySQL_Replication
- react
- map이 undefined가 뜰 때
- invalid data
- datagridview 직접입력
- setInterval 정지
- DatePicker
- Today
- Total
목록AntDesign (3)
개발 노트

★ 1 npm create vite@latest . -- --template react ★ 2 npm install -D tailwindcss@3 postcss autoprefixer ★ 3 - postcss.config.cjs module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, } } ★ 4 npm i antd ★ 5 npx tailwind init ★ 6 - index.css @layer tailwind-base, antd; @layer tailwind-base { @tailwind base; } @tailwind components; @tailwind utilities; ★ 7 - tailwind.config..
format설정을 걸어놓고 props로 전달받은 데이터를 바로 사용하게 x를 눌렀을 시에 빈칸으로 들어오는데 그 값을 포맷이 인식을 하지 못하기에 invalid data가 떠서 수정이 되지 않는다.
const onChange = (nextTargetKeys, direction, moveKeys) => { setTargetKeys(nextTargetKeys); if (moveKeys.length > 0) { let showColumns = []; for (let i = 0; i { tableColumn.filter((item) => nextTargetKeys.includes(item.key) === true ? (item.show = false) : (item.show = true) ); return item; }); } setTableShowColumns(showColumn..