feat: 사이드 메뉴 - 캐릭터 챗봇 메뉴 추가

This commit is contained in:
Yu Sung
2025-08-05 15:14:24 +09:00
parent dbc46482b1
commit 439cc21e57
3 changed files with 45 additions and 0 deletions

16
src/api/character.js Normal file
View File

@@ -0,0 +1,16 @@
import Vue from 'vue';
// 캐릭터 리스트
async function getCharacterList() {
return Vue.axios.get('/api/admin/characters')
}
// 캐릭터 등록
// 캐릭터 수정
// 캐릭터 삭제
export {
getCharacterList
}