vue에서promise 비동기 요청 데이터

826 단어
export function getTypes(type) {
    return listDictItems({ code: type }).then((res) => {
        if (res.code == 200) {
            let list = res.body;
            // console.log('list',list);
            return list;
        }
    })
};

구성 요소:
 getTypes('EP_TYPE').then((data) => {console.log('data',data)});//성취

좋은 웹페이지 즐겨찾기