vue3 todolist 简单例子

万万哇  金牌会员 | 2024-6-27 21:17:27 | 来自手机 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 935|帖子 935|积分 2805

vue3 简单的TodList
地址: https://gitee.com/cheng_yong_xu/vue3-composition-api-todo-app-my
效果

step-1

初始化项项目

我们不采用vue cli 搭建项目
直接将上图文件夹,复制到vscode编辑器,清空App.vue的内容
安装包
  1. # 安装包
  2. npm i
  3. # 启动
  4. npm run serve
复制代码

step-2

先写样式结构

  1. <!-- src\App.vue -->
  2. <template>
  3.         <h1>ToDo App</h1>
  4.         <form>
  5.                 <label for="">添加待办项</label>
  6.                 <input type="text" name="newTodo" autocomplete="off" />
  7.                 <button>添 加</button>
  8.         </form>
  9.         <h2>待办列表</h2>
  10.         <ul>
  11.                 <li>
  12.                         <span>代办列表</span>
  13.                         <button>删 除</button>
  14.                 </li>
  15.         </ul>
  16. </template>
  17. <script>
  18. export default {}
  19. </script>
  20. <style lang="scss">
  21. $size1: 6px;
  22. $size2: 12px;
  23. $size3: 18px;
  24. $size4: 24px;
  25. $size5: 48px;
  26. $backgroundColor: #27292d;
  27. $primaryColor: #EC23F3;
  28. $secondTextColor: #1f2023;
  29. $border: 2px solid rgba($color: white,
  30.                 $alpha: 0.35,
  31.         );
  32. $textColor: white;
  33. $border_r: 2px solid red;
  34. $border_y: 2px solid rgb(241, 229, 50);
  35. $border_g: 2px solid rgb(50, 241, 50);
  36. $border_w: 2px solid white;
  37. body {
  38.         margin: 0;
  39.         padding: 0;
  40.         font-family: Avenir, Helvetica, Arial, sans-serif;
  41.         -webkit-font-smoothing: antialiased;
  42.         -moz-osx-font-smoothing: grayscale;
  43.         background-color: $backgroundColor;
  44.         color: $textColor;
  45.         #app {
  46.                 max-width: 600px;
  47.                 margin-left: auto;
  48.                 margin-right: auto;
  49.                 padding: 20px;
  50.                 // border: $border_w;
  51.                 h1 {
  52.                         font-weight: bold;
  53.                         font-size: 28px;
  54.                         text-align: center;
  55.                         // border: $border_r;
  56.                 }
  57.                 form {
  58.                         display: flex;
  59.                         flex-direction: column;
  60.                         width: 100%;
  61.                         label {
  62.                                 font-size: 14px;
  63.                                 font-weight: bold;
  64.                         }
  65.                         input,
  66.                         button {
  67.                                 height: $size5;
  68.                                 box-shadow: none;
  69.                                 outline: none;
  70.                                 padding-left: $size2;
  71.                                 padding-right: $size2;
  72.                                 border-radius: $size1;
  73.                                 font-size: 18px;
  74.                                 margin-top: $size1;
  75.                                 margin-bottom: $size2;
  76.                                 transition: all 0.2s ease-in-out;
  77.                                 /* 添加过渡效果,使变化平滑 */
  78.                         }
  79.                         input {
  80.                                 background-color: transparent;
  81.                                 border: $border;
  82.                                 color: inherit;
  83.                         }
  84.                         input:hover {
  85.                                 border: 2px solid rgb(236, 35, 243);
  86.                         }
  87.                         button {
  88.                                 cursor: pointer;
  89.                                 background-color: rgb(236, 35, 243);
  90.                                 border: 1px solid $primaryColor;
  91.                                 font-weight: bold;
  92.                                 color: white;
  93.                                 border-radius: $size1;
  94.                         }
  95.                 }
  96.                 h2 {
  97.                         // border: $border_g;
  98.                         font-size: 22px;
  99.                         border-bottom: $border;
  100.                         padding-bottom: $size1;
  101.                 }
  102.                 ul {
  103.                         padding: 10px;
  104.                         li {
  105.                                 display: flex;
  106.                                 justify-content: space-between;
  107.                                 align-items: center;
  108.                                 border: $border;
  109.                                 padding: 10px;
  110.                                 border-radius: $size1;
  111.                                 margin-bottom: $size2;
  112.                                 span {
  113.                                         cursor: pointer;
  114.                                 }
  115.                                 button {
  116.                                         cursor: pointer;
  117.                                         font-size: $size2;
  118.                                         background-color: rgb(236, 35, 243);
  119.                                         border: 1px solid $primaryColor;
  120.                                         font-weight: bold;
  121.                                         color: white;
  122.                                         padding: 5px 15px;
  123.                                         border-radius: $size1;
  124.                                 }
  125.                         }
  126.                 }
  127.         }
  128. }
  129. </style>
复制代码
step-3

双向绑定数据
  1. <!-- src\App.vue -->
  2. <template>
  3.         <h1>ToDo App</h1>
  4.         <form @submit.prevent="addTodo()">
  5.                 <label for="">添加待办项</label>
  6.                 <input type="text" name="newTodo" autocomplete="off" v-model="newTodo"/>
  7.                 <button>添 加</button>
  8.         </form>
  9.         <h2>待办列表</h2>
  10.         <ul>
  11.                 <li>
  12.                         <span>代办列表</span>
  13.                         <button>删 除</button>
  14.                 </li>
  15.         </ul>
  16. </template>
  17. <script>
  18. import {ref } from 'vue';
  19. export default {
  20.         name: 'App',
  21.         setup(){
  22.                 const newTodo = ref('');
  23.                 function addTodo(){
  24.                         if(newTodo.value){
  25.                                 console.log(newTodo.value);
  26.                         }
  27.                 }
  28.                 return {
  29.                         newTodo,
  30.                         addTodo
  31.                 }
  32.         }
  33. }
  34. </script>
复制代码

step-4

定义数据并将数据变成响应式的
将数据长期化到本地
定义数据并将数据变成响应式的

  1. <script>
  2. import { ref } from 'vue';
  3. export default {
  4.         name: 'App',
  5.         setup() {
  6.                 const newTodo = ref('');
  7.                 const defaultData = ref([
  8.                         {
  9.                                 done: false,
  10.                                 content: '今天要学习Vue'
  11.                         }
  12.                 ]);
  13.                 const todos = ref(defaultData);
  14.                 function addTodo() {
  15.                         if (newTodo.value) {
  16.                                 todos.value.push({
  17.                                         done: false,
  18.                                         content: newTodo.value
  19.                                 })
  20.                         }
  21.                         console.log(todos.value)
  22.                 }
  23.                 return {
  24.                         newTodo,
  25.                         addTodo
  26.                 }
  27.         }
  28. }
  29. </script>
复制代码

将数据长期化到本地

  1. <script>
  2. import { ref } from 'vue';
  3. export default {
  4.         name: 'App',
  5.         setup() {
  6.                 const newTodo = ref('');
  7.                 const defaultData = ref([
  8.                         {
  9.                                 done: false,
  10.                                 content: '今天要学习Vue'
  11.                         }
  12.                 ]);
  13.                 const todos = ref(defaultData);
  14.                 function addTodo() {
  15.                         if (newTodo.value) {
  16.                                 todos.value.push({
  17.                                         done: false,
  18.                                         content: newTodo.value
  19.                                 })
  20.                         }
  21.                         saveData()
  22.                         console.log(sessionStorage.getItem('todos'))
  23.                 }
  24.                 function saveData () {
  25.                         const storageData = JSON.stringify(todos.value)
  26.                         sessionStorage.setItem('todos', storageData)
  27.                 }
  28.                 return {
  29.                         newTodo,
  30.                         addTodo
  31.                 }
  32.         }
  33. }
  34. </script>
复制代码

step-5

渲染待办列表
  1.         <h2>待办列表</h2>
  2.         <ul>
  3.                 <li v-for="(todo, index) in todos" :key="index">
  4.                         <span>{{ todo.content }}</span>
  5.                         <button>删 除</button>
  6.                 </li>
  7.         </ul>
复制代码

点击笔墨划横线
点击删除从待办列表移除
  1. <!-- src\App.vue -->
  2. <template>
  3.         <h1>ToDo App</h1>
  4.         <form @submit.prevent="addTodo()">
  5.                 <label for="">添加待办项</label>
  6.                 <input type="text" name="newTodo" autocomplete="off" v-model="newTodo" />
  7.                 <button>添 加</button>
  8.         </form>
  9.         <h2>待办列表</h2>
  10.         <ul>
  11.                 <li v-for="(todo, index) in todos" :key="index">
  12.                         <span
  13.                         :class="{ done: todo.done }"
  14.                         @click="todo.done = !todo.done"
  15.                         >{{ todo.content }}</span>
  16.                         <button @click="removeTodo(index)">删 除</button>
  17.                 </li>
  18.         </ul>
  19. </template>
  20. <script>
  21. import { ref } from 'vue';
  22. export default {
  23.         name: 'App',
  24.         setup() {
  25.                 const newTodo = ref('');
  26.                 const defaultData = ref([
  27.                         {
  28.                                 done: false,
  29.                                 content: '今天要学习Vue'
  30.                         }
  31.                 ]);
  32.                 const todos = ref(defaultData);
  33.                 function addTodo() {
  34.                         if (newTodo.value) {
  35.                                 todos.value.push({
  36.                                         done: false,
  37.                                         content: newTodo.value
  38.                                 })
  39.                                 newTodo.value = ''
  40.                         }
  41.                         saveData()
  42.                         console.log(sessionStorage.getItem('todos'))
  43.                 }
  44.                 function removeTodo(index) {
  45.                         todos.value.splice(index, 1)
  46.                         saveData()
  47.                 }
  48.                 function saveData() {
  49.                         const storageData = JSON.stringify(todos.value)
  50.                         sessionStorage.setItem('todos', storageData)
  51.                 }
  52.                 return {
  53.                         newTodo,
  54.                         todos,
  55.                         addTodo,
  56.                         removeTodo
  57.                 }
  58.         }
  59. }
  60. </script>
  61. <style lang="scss">
  62. $size1: 6px;
  63. $size2: 12px;
  64. $size3: 18px;
  65. $size4: 24px;
  66. $size5: 48px;
  67. $backgroundColor: #27292d;
  68. $primaryColor: #EC23F3;
  69. $secondTextColor: #1f2023;
  70. $border: 2px solid rgba($color: white,
  71.                 $alpha: 0.35,
  72.         );
  73. $textColor: white;
  74. $border_r: 2px solid red;
  75. $border_y: 2px solid rgb(241, 229, 50);
  76. $border_g: 2px solid rgb(50, 241, 50);
  77. $border_w: 2px solid white;
  78. body {
  79.         margin: 0;
  80.         padding: 0;
  81.         font-family: Avenir, Helvetica, Arial, sans-serif;
  82.         -webkit-font-smoothing: antialiased;
  83.         -moz-osx-font-smoothing: grayscale;
  84.         background-color: $backgroundColor;
  85.         color: $textColor;
  86.         #app {
  87.                 max-width: 600px;
  88.                 margin-left: auto;
  89.                 margin-right: auto;
  90.                 padding: 20px;
  91.                 // border: $border_w;
  92.                 h1 {
  93.                         font-weight: bold;
  94.                         font-size: 28px;
  95.                         text-align: center;
  96.                         // border: $border_r;
  97.                 }
  98.                 form {
  99.                         display: flex;
  100.                         flex-direction: column;
  101.                         width: 100%;
  102.                         label {
  103.                                 font-size: 14px;
  104.                                 font-weight: bold;
  105.                         }
  106.                         input,
  107.                         button {
  108.                                 height: $size5;
  109.                                 box-shadow: none;
  110.                                 outline: none;
  111.                                 padding-left: $size2;
  112.                                 padding-right: $size2;
  113.                                 border-radius: $size1;
  114.                                 font-size: 18px;
  115.                                 margin-top: $size1;
  116.                                 margin-bottom: $size2;
  117.                                 transition: all 0.2s ease-in-out;
  118.                                 /* 添加过渡效果,使变化平滑 */
  119.                         }
  120.                         input {
  121.                                 background-color: transparent;
  122.                                 border: $border;
  123.                                 color: inherit;
  124.                         }
  125.                         input:hover {
  126.                                 border: 2px solid rgb(236, 35, 243);
  127.                         }
  128.                         button {
  129.                                 cursor: pointer;
  130.                                 background-color: rgb(236, 35, 243);
  131.                                 border: 1px solid $primaryColor;
  132.                                 font-weight: bold;
  133.                                 color: white;
  134.                                 border-radius: $size1;
  135.                         }
  136.                 }
  137.                 h2 {
  138.                         // border: $border_g;
  139.                         font-size: 22px;
  140.                         border-bottom: $border;
  141.                         padding-bottom: $size1;
  142.                 }
  143.                 ul {
  144.                         padding: 10px;
  145.                         li {
  146.                                 display: flex;
  147.                                 justify-content: space-between;
  148.                                 align-items: center;
  149.                                 border: $border;
  150.                                 padding: 10px;
  151.                                 border-radius: $size1;
  152.                                 margin-bottom: $size2;
  153.                                 span {
  154.                                         cursor: pointer;
  155.                                 }
  156.                                 .done {
  157.                                         text-decoration: line-through;
  158.                                 }
  159.                                 button {
  160.                                         cursor: pointer;
  161.                                         font-size: $size2;
  162.                                         background-color: rgb(236, 35, 243);
  163.                                         border: 1px solid $primaryColor;
  164.                                         font-weight: bold;
  165.                                         color: white;
  166.                                         padding: 5px 15px;
  167.                                         border-radius: $size1;
  168.                                 }
  169.                         }
  170.                 }
  171.                 h4 {
  172.                         text-align: center;
  173.                         opacity: 0.5;
  174.                         margin: 0;
  175.                 }
  176.         }
  177. }
  178. </style>
复制代码

step-6

目前我们的数据固然存在本地,但是我们利用的是内存中的数据,应该利用本地的数据
关闭浏览器再打开看到的还是和关闭之前一样的数据
  1. <template>
  2.         <h1>ToDo App</h1>
  3.         <form @submit.prevent="addTodo()">
  4.                 <label>New ToDo </label>
  5.                 <input
  6.                         v-model="newTodo"
  7.                         name="newTodo"
  8.                         autocomplete="off"
  9.                 >
  10.                 <button>Add ToDo</button>
  11.         </form>
  12.         <h2>ToDo List</h2>
  13.         <ul>
  14.                 <li
  15.                         v-for="(todo, index) in todos"
  16.                         :key="index"
  17.                 >
  18.                         <span
  19.                                 :class="{ done: todo.done }"
  20.                                 @click="doneTodo(todo)"
  21.                         >{{ todo.content }}</span>
  22.                         <button @click="removeTodo(index)">Remove</button>
  23.                 </li>
  24.         </ul>
  25.         <h4 v-if="todos.length === 0">Empty list.</h4>
  26. </template>
  27. <script>
  28.         import { ref } from 'vue';
  29.         export default {
  30.                 name: 'App',
  31.                 setup () {
  32.                         const newTodo = ref('');
  33.                         const defaultData = [{
  34.                                 done: false,
  35.                                 content: 'Write a blog post'
  36.                         }]
  37.                         const todosData = JSON.parse(localStorage.getItem('todos')) || defaultData;
  38.                         const todos = ref(todosData);
  39.                         function addTodo () {
  40.                                 if (newTodo.value) {
  41.                                         todos.value.push({
  42.                                                 done: false,
  43.                                                 content: newTodo.value
  44.                                         });
  45.                                         newTodo.value = '';
  46.                                 }
  47.                                 saveData();
  48.                         }
  49.                         function doneTodo (todo) {
  50.                                 todo.done = !todo.done
  51.                                 saveData();
  52.                         }
  53.                         function removeTodo (index) {
  54.                                 todos.value.splice(index, 1);
  55.                                 saveData();
  56.                         }
  57.                         function saveData () {
  58.                                 const storageData = JSON.stringify(todos.value);
  59.                                 localStorage.setItem('todos', storageData);
  60.                         }
  61.                         return {
  62.                                 todos,
  63.                                 newTodo,
  64.                                 addTodo,
  65.                                 doneTodo,
  66.                                 removeTodo,
  67.                                 saveData
  68.                         }
  69.                 }
  70.         }
  71. </script>
  72. <style lang="scss">
  73. $border: 2px solid
  74.         rgba(
  75.                 $color: white,
  76.                 $alpha: 0.35,
  77.         );
  78. $size1: 6px;
  79. $size2: 12px;
  80. $size3: 18px;
  81. $size4: 24px;
  82. $size5: 48px;
  83. $backgroundColor: #27292d;
  84. $textColor: white;
  85. $primaryColor: #a0a4d9;
  86. $secondTextColor: #1f2023;
  87. body {
  88.         margin: 0;
  89.         padding: 0;
  90.         font-family: Avenir, Helvetica, Arial, sans-serif;
  91.         -webkit-font-smoothing: antialiased;
  92.         -moz-osx-font-smoothing: grayscale;
  93.         background-color: $backgroundColor;
  94.         color: $textColor;
  95.         #app {
  96.                 max-width: 600px;
  97.                 margin-left: auto;
  98.                 margin-right: auto;
  99.                 padding: 20px;
  100.                 h1 {
  101.                         font-weight: bold;
  102.                         font-size: 28px;
  103.                         text-align: center;
  104.                 }
  105.                 form {
  106.                         display: flex;
  107.                         flex-direction: column;
  108.                         width: 100%;
  109.                         label {
  110.                                 font-size: 14px;
  111.                                 font-weight: bold;
  112.                         }
  113.                         input,
  114.                         button {
  115.                                 height: $size5;
  116.                                 box-shadow: none;
  117.                                 outline: none;
  118.                                 padding-left: $size2;
  119.                                 padding-right: $size2;
  120.                                 border-radius: $size1;
  121.                                 font-size: 18px;
  122.                                 margin-top: $size1;
  123.                                 margin-bottom: $size2;
  124.                         }
  125.                         input {
  126.                                 background-color: transparent;
  127.                                 border: $border;
  128.                                 color: inherit;
  129.                         }
  130.                 }
  131.                 button {
  132.                         cursor: pointer;
  133.                         background-color: $primaryColor;
  134.                         border: 1px solid $primaryColor;
  135.                         color: $secondTextColor;
  136.                         font-weight: bold;
  137.                         outline: none;
  138.                         border-radius: $size1;
  139.                 }
  140.                 h2 {
  141.                         font-size: 22px;
  142.                         border-bottom: $border;
  143.                         padding-bottom: $size1;
  144.                 }
  145.                 ul {
  146.                         padding: 10px;
  147.                         li {
  148.                                 display: flex;
  149.                                 justify-content: space-between;
  150.                                 align-items: center;
  151.                                 border: $border;
  152.                                 padding: $size2 $size4;
  153.                                 border-radius: $size1;
  154.                                 margin-bottom: $size2;
  155.                                 span {
  156.                                         cursor: pointer;
  157.                                 }
  158.                                 .done {
  159.                                         text-decoration: line-through;
  160.                                 }
  161.                                 button {
  162.                                         font-size: $size2;
  163.                                         padding: $size1;
  164.                                 }
  165.                         }
  166.                 }
  167.                 h4 {
  168.                         text-align: center;
  169.                         opacity: 0.5;
  170.                         margin: 0;
  171.                 }
  172.         }
  173. }
  174. </style>
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

万万哇

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表