로딩
요청 처리 중입니다...

[vue] localstorage 사용해서 to-do list 만들기

 [vue] localstorage 사용해서 to-do list 만들기

https://jiwon0297.github.io/todolist/index.html Vue.js To-Do List To-Do List 0 items All Active Completed Reset jiwon0297.github.io 구린 내 투두리스트 쓰고싶으면 써보삼 ㅋ 결과화면 메인 작업중인 것만 보여주기 완료된 것만 보여주기 영상 코드 localstorage 사용해서 todolist json 형태로 저장 var app = new Vue({ el: '#app', data: { todos: [], options: [ { value: -1, label: 'All' }, { value: 0, label: 'Active' }, { value: 1, label: 'Completed' }, ], //선택되어 있는 옵션의 value를 저장하기 위함 //초기값 -1 (전체0 current: -1, }, created() { //인스턴스 생성시 자동으로 fetch() 기능 실행 this.t...

# todolist # vue # vuejs