투두리스트 만들기(with MVC pattern)
1. 개요
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TODO LIST</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="./index.js"></script>
</body>
</html>2. MVC
3. TODO LIST
TODO 등록하기
TODO 완료 및 삭제하기
TODO Localstorage에 저장하기
Last updated