[섹션2] TodoFooter 컴포넌트 구현

김희주·2023년 10월 26일
0

vue.js

목록 보기
13/13
  1. TodoFooter.vue
<template>
  <div class="clearAllContainer">
    <span class="clearAllBtn" v-on:click="clearTodo">Clear All</span>
  </div>
</template>

<script>
export default {

  methods: {
    clearTodo: function() {
      //db 데이터 지우기
      localStorage.claer();
      
    }
  }

}
</script>

<style scoped>
.clearAllContainer {
  width: 8.5rem;
  height: 50px;
  line-height: 50px;
  background-color: white;
  border-radius: 5px;
  margin: 0 auto;
}

.clearAllBtn {
  color: #e20303;
  display: block;
}
</style>
profile
백엔드 개발자입니다 ☘

0개의 댓글

관련 채용 정보