2. api 작성
- ('api'.js)생성 --파일이름 자유

import axios from 'axios';

const api = { 
    title: 'http://localhost:8088/popup/notice/title',
    contentens: 'http://localhost:8088/popup/notice/contents?idx=',
};

function getNotice() {

 return axios.get(api.title);

}

function getNoticeContents(idx) {

 return axios.get(api.contents + idx);

}

export {

  getNotice,

  getNoticeContents

}




+ Recent posts