IE Support
ie support
실패
- 안되고 browserslist 설정
IE 호환 설정
Autoprefixer 설정 가이드
https://vue-nuxt.gitbook.io/nuxt/configuration/ie
- babel 설정도 안된다
Nuxt 2.8.1 not woking with IE 11, couldnt transpile vue files · Issue #5993 · nuxt/nuxt.js
Version v2.8.1 Description When I try to open nuxt in Internet Explorer, the following error appears: The problem that I currently have is a syntax error corresponding to es6, currently it is not transpiling to es5 but to version 1 if it...
https://github.com/nuxt/nuxt.js/issues/5993
안될 만 한게 이미 플러그인 들어간 게 굉장히 많아서 뭐가 안되는 지 찾기도 어렵고 한두개도 아닐 것 같다

이렇다고는 하는데
Patch, Delete 마무리
remove error resolve
한번만 불러올 수 있나?
아니고 meta query 가 안맞아서였다
쿼리 있으면 그놈만 가져오게 있어서 그런듯 내부적으로

3333 port already in use
brave browser 가 3333 점유중이라서 꺼도 다시 시작했다
recursive change all alive property
if parent changed → patch two parent ㄷㄷ
다 구현했고 테스트
test 12를 page1 로 보내서 test 11 아래로 보내기
25 document
response 확인
ui 확인
- parent 있다고 무조건 아니라 다를 때만 넣기
- filter data history bin 초기화 되서 조건 구현
page 2 를 없에서 전부쓰레기통으로
response 확인
ui 확인
api 문서 수정
load page chunk 완료 - 내부 record 는 filter
Web Storage
web storage
못미더운 썸내일이지만 정말 괜찮게 잘 만든듯
rubystarashe/nuxt-vuex-localstorage
nuxt의 vuex와 webStorage를 연결하여 localStorage와 sessionStorage를 보다 더 쉽고 유용하게 사용 할 수 있습니다. 다른 persist플러그인들과는 다르게 webStorage를 vuex에 일부 공간만 할당하여, webStorage의 낭비를 줄이고 기존 vuex의 활용과 병용할 수 있도록 하였습니다. 여러 개의 브라우저 탭에서 localStorage를 통한 데이터 바인딩을 매우 쉽게 관리할 수 있습니다! 강력한 암호화 기능으로 다양한 webStorage 보안 기능을 제공합니다.
https://github.com/rubystarashe/nuxt-vuex-localstorage/blob/master/README-kor.md#nuxt-vuex-localstorage
- 맨 아래를 보면 io polyfill 은 지원한다
vuex
- mutation
Mutations | Vuex
The only way to actually change state in a Vuex store is by committing a mutation. Vuex mutations are very similar to events: each mutation has a string type and a handler. The handler function is where we perform actual state modifications, and it will receive the state as the first argument: You cannot directly call a mutation handler.
https://vuex.vuejs.org/guide/mutations.html
localstorage.js
_page.vue

Seonglae Cho