Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Spring
- oracle
- 알고리즘
- 시큐리티
- 프로그래머스
- kotlin
- 스프링
- 에러
- mybatis
- 코틀린
- GitHub
- 생성
- aws
- 넥사크로
- jquery
- 쿼리
- 오라클
- error
- Eclipse
- Java
- db
- Security
- 자바
- JPA
- 방법
- JavaScript
- Git
- IntelliJ
- Vue
- 함수
Archives
- Today
- Total
송민준의 개발노트
vue local storage에 값 넣기(로컬 스토리지) 본문
vue에서 로컬 스토리지에 값을 넣는 경우가 있다.
아래처럼 localStorage.setItem으로 설정해주면 된다.
<script>
export default {
data() {
return {
newTodoItem: ''
}
},
methods: {
addTodo() {
localStorage.setItem(this.newTodoItem, this.newTodoItem);
}
}
}
</script>
개발자모드에서 확인 가능
'웹 > Vue' 카테고리의 다른 글
axios 사용 (0) | 2021.03.21 |
---|---|
Vue 토이프로젝트 github에 올리기(Atom, git bash 사용) (0) | 2020.02.14 |
뷰 CLI (0) | 2020.02.12 |
싱글 파일 컴포넌트 체계 (0) | 2020.02.12 |
뷰 템플릿 (0) | 2020.02.09 |