진스
카카오 Rest api 이용해보기 본문
728x90
api/index.js
//index.js
function kakaoFetch(keyword) {
return axios.create({
baseURL: "https://dapi.kakao.com/v3/search/book?target=title",
headers: {
Authorization: " KakaoAK 나의REST API키",
},
params: { query: keyword},
});
}
export { kakaoFetch };
|
cs |
작업할 vue 내에
| cs |
728x90
'Vue' 카테고리의 다른 글
slot을 이용한 modal(모달) 사용 feat) transition (0) | 2021.05.04 |
---|---|
vue에서 background-image 적용하기 (1) | 2021.05.03 |
vuex 새로고침시 상태 초기화 방지 (0) | 2021.04.30 |
vue-cookies 사용법 (0) | 2021.04.30 |
vue slot 사용법 (0) | 2021.04.30 |
Comments