AWS 학습 링크집 시리즈
- AWS 학습 자료집 http://bit.ly/aws-study-resource
- AWS 공인 솔루션스 아키텍트 - 어소시에이트 수험 가이드 http://bit.ly/sacertguide
- AWS 공인 개발자 - 어소시에이트 수험 가이드 http://bit.ly/devcertguide
- AWS 보안 관련 컨텐츠 모음집 http://bit.ly/seccontents
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
AWS 학습 링크집 시리즈
import { unrefElement, useEventListener } from '@vueuse/core' | |
const defaultWindow = typeof window !== 'undefined' ? window : undefined | |
/** | |
* Listen for clicks outside of an element. | |
* | |
* @see https://vueuse.org/onClickOutside | |
* @param target | |
* @param handler |