TypeScript로 axios 사용해본 기록
일단 여기에 이어서 함. 1. axios 모듈을 받아야 함. npm install axios 2. client.ts 파일 생성 touch src/scripts/client.ts 3. client.ts 파일 작성 import axios, { InternalAxiosRequestConfig } from 'axios'; const client = axios.create({ headers: { 'X-Requested-With': 'XMLHttpRequest', 'Cache-Control': 'no-store', }, withCredentials: true, }); export const getData = async ( url: string, params?: any, config?: InternalAxiosReq..
공부합시다/Vue
2024. 1. 24. 16:57
[Vue.js 3] Pinia 설치
새로고침 시 상태 유지하려고 Vuex 공부하려는데 상태 관리 라이브러리를 Pinia로 바꿨다고 한다. 참고링크 일단 도전 정신으로 설치해보자! App.vue에서 sotre 사용할 때는 //App.vue import { indexStore } from '@/store/index'; export default { setup () { const store = indexStore(); return { store } }; } import할 때 사용한 indexStore는 맘대로 바꿀 수 있다. 단, store에 있는 변수명과 composition api에서 사용하는 이름이 같아야 한다. 공식문서
공부합시다/Vue
2022. 4. 13. 14:09