Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- react
- Pepper
- password
- laravel
- 자바스크립트
- 음성인식
- http header
- smtp
- algorithm
- sort
- salt
- array
- javascript
- http
- 상태 코드
- status code
- laravel 10
- pinia
- 알고리즘
- Vue 3
- Key strech
- State Management
- Date
- typescript
- Web Speech API
- bubble sort
- php
- vue
Archives
- Today
- Total
목록State Management (1)
Jin의 개발 블로그

Introduction Pinia 는 Vue 3에서 Vuex를 밀어내고 가장 인기 있는 Statement manage 패키지로 올라섰습니다. 또한 한국어로 잘 번역되어 있기 때문에 한국에서 많이 사용하고 있습니다. 이 게시물은 Pinia를 조금 더 잘 사용하는 방법에 대해 설명할 것입니다. Setup Store `Setup store`는 `option store` 와 달리 `` 처럼 사용 할 수 있게 합니다. option store와 비교 export const useCounterStore = defineStore('counter', () => { const count = ref(0) const name = ref('Eduardo') const doubleCount = computed(() => coun..
Vue
2023. 9. 30. 09:50