1. 타입스크립트에서 float to int
(아래 코드는 같은 명도, 채도의 다른 색상을 랜덤으로 가져오는 코드)
const colors = `hsl(${Math.floor(Math.random() * 24) * 10 * 15}, 16%, 57%)`;
2. scss 미디어 쿼리 전역으로 쓰기
2021.11.17 - [WEB/VUE.js] - [VUE.js] vue3 scss media query 전역으로 쓰는 법
3. route의 query 에서 빼온 값이 string 인자로 안들어갈때
강제로 타입을 지정해주어야함
const routeSearch = computed(() => route.query.search) as Ref<string>;
728x90
'TIL' 카테고리의 다른 글
[TIL] 20211119 vue store action type / vue custom directives (0) | 2021.11.19 |
---|---|
[TIL] 20211118 vue 무한 스크롤 구현 (0) | 2021.11.19 |
[TIL] 20211116 selectbox/ window.confirm (0) | 2021.11.19 |
[TIL] 20211115 vue 라이프 사이클 (0) | 2021.11.19 |
[TIL] 20211112 vue teleport/ 동적 컴포넌트/ 중첩 라우트/ 랜덤 컬러 (0) | 2021.11.19 |