首页 前端知识 Vue.js 2 项目实战(八):小黑记事本组件版

Vue.js 2 项目实战(八):小黑记事本组件版

2024-08-18 22:08:05 前端知识 前端哥 995 390 我要收藏

前言

Vue.js 是一个用于构建用户界面的渐进式 JavaScript 框架。它的设计初衷是通过采用简洁且强大的结构,使前端开发变得更简单和高效。以下是对 Vue.js 的详细介绍:

核心特性

  1. 声明式渲染

    • Vue.js 使用声明式语法来描述用户界面,通过数据绑定实现视图的自动更新。
  2. 组件系统

    • Vue.js 提供了一个灵活的组件系统,可以将 UI 拆分为可复用的独立组件,每个组件包含自己的模板、逻辑和样式。
  3. 单文件组件 (SFC)

    • Vue.js 允许将 HTML、CSS 和 JavaScript 放在一个 .vue 文件中,这种单文件组件的结构使得组件开发更加直观和模块化。
  4. 虚拟 DOM

    • Vue.js 使用虚拟 DOM 来优化视图更新,通过最小化实际 DOM 操作,提高性能。
  5. 反应式数据绑定

    • Vue.js 提供了响应式的数据绑定系统,当数据变化时,视图会自动更新。
  6. 指令

    • Vue.js 提供了一组内置指令,如 v-bindv-modelv-for,可以轻松操作 DOM。

优点

  1. 易于上手

    • Vue.js 的学习曲线较低,适合新手入门,并且有详细的文档和教程。
  2. 灵活性

    • Vue.js 可以逐步采用,可以用于小部分的功能增强,也可以用于构建复杂的单页面应用(SPA)。
  3. 高性能

    • 虚拟 DOM 和响应式系统使得 Vue.js 在处理数据密集型操作时表现优异。
  4. 强大的生态系统

    • Vue.js 生态系统丰富,包括 Vue Router、Vuex、Vue CLI 等,提供了强大的开发工具支持。
  5. 活跃的社区

    • Vue.js 拥有一个活跃的社区,有大量的插件、教程和支持资源。

知识点

// 渲染功能
// 1. 公共父组件 APP.vue 提供数据
// 2. 通过父传子的方式,将数据传递给 TodoMain
// 3. 利用 v-for 渲染

// 添加功能
// 1. 收集表单数据 ➡ v-model
// 2. 监听事件(回车 + 点击)
// 3. 子传父,将任务名称传递给父组件 App.vue
// 4. 进行添加 ➡ unshift

// 删除功能
// 1. 监听事件
// 2. 子传父,将删除的 id 传递给父组件
// 3. 父组件删除

// 底部合计
// 父传子渲染

// 清空功能
// 子传父清空数据

// 持久化存储
// 1. watch 深度监视
// 2. 往本地存储
// 3. 进入页面先读取本地

项目效果

渲染功能

添加功能

删除功能

清空功能

本地存储功能

源代码

index.css

html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
}
button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 100%;
  vertical-align: baseline;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.4em;
  background: #f5f5f5;
  color: #4d4d4d;
  min-width: 230px;
  max-width: 550px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

:focus {
  outline: 0;
}

.hidden {
  display: none;
}

#app {
  background: #fff;
  margin: 180px 0 40px 0;
  padding: 15px;
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
}
#app .header input {
  border: 2px solid rgba(175, 47, 47, 0.8);
  border-radius: 10px;
}
#app .add {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 68px;
  width: 140px;
  text-align: center;
  background-color: rgba(175, 47, 47, 0.8);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  border-radius: 0 10px 10px 0;
}

#app input::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #e6e6e6;
}

#app input::-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #e6e6e6;
}

#app input::input-placeholder {
  font-style: italic;
  font-weight: 300;
  color: gray;
}

#app h1 {
  position: absolute;
  top: -120px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 100;
  text-align: center;
  color: rgba(175, 47, 47, 0.8);
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
}

.new-todo,
.edit {
  position: relative;
  margin: 0;
  width: 100%;
  font-size: 24px;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1.4em;
  border: 0;
  color: inherit;
  padding: 6px;
  box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.new-todo {
  padding: 16px;
  border: none;
  background: rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
}

.main {
  position: relative;
  z-index: 2;
}

.todo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.todo-list li {
  position: relative;
  font-size: 24px;
  height: 60px;
  box-sizing: border-box;
  border-bottom: 1px solid #e6e6e6;
}

.todo-list li:last-child {
  border-bottom: none;
}

.todo-list .view .index {
  position: absolute;
  color: gray;
  left: 10px;
  top: 20px;
  font-size: 22px;
}

.todo-list li .toggle {
  text-align: center;
  width: 40px;
  /* auto, since non-WebKit browsers doesn't support input styling */
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border: none; /* Mobile Safari */
  -webkit-appearance: none;
  appearance: none;
}

.todo-list li .toggle {
  opacity: 0;
}

.todo-list li .toggle + label {
  /*
		Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
		IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
	*/
  background-image: url('data:image/svg+xml;utf8,');
  background-repeat: no-repeat;
  background-position: center left;
}

.todo-list li .toggle:checked + label {
  background-image: url('data:image/svg+xml;utf8,');
}

.todo-list li label {
  word-break: break-all;
  padding: 15px 15px 15px 60px;
  display: block;
  line-height: 1.2;
  transition: color 0.4s;
}

.todo-list li.completed label {
  color: #d9d9d9;
  text-decoration: line-through;
}

.todo-list li .destroy {
  display: none;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto 0;
  font-size: 30px;
  color: #cc9a9a;
  margin-bottom: 11px;
  transition: color 0.2s ease-out;
}

.todo-list li .destroy:hover {
  color: #af5b5e;
}

.todo-list li .destroy:after {
  content: '×';
}

.todo-list li:hover .destroy {
  display: block;
}

.todo-list li .edit {
  display: none;
}

.todo-list li.editing:last-child {
  margin-bottom: -1px;
}

.footer {
  color: #777;
  padding: 10px 15px;
  height: 20px;
  text-align: center;
  border-top: 1px solid #e6e6e6;
}

.footer:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 8px 0 -3px #f6f6f6,
    0 9px 1px -3px rgba(0, 0, 0, 0.2), 0 16px 0 -6px #f6f6f6,
    0 17px 2px -6px rgba(0, 0, 0, 0.2);
}

.todo-count {
  float: left;
  text-align: left;
}

.todo-count strong {
  font-weight: 300;
}

.filters {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 0;
  left: 0;
}

.filters li {
  display: inline;
}

.filters li a {
  color: inherit;
  margin: 3px;
  padding: 3px 7px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
}

.filters li a:hover {
  border-color: rgba(175, 47, 47, 0.1);
}

.filters li a.selected {
  border-color: rgba(175, 47, 47, 0.2);
}

.clear-completed,
html .clear-completed:active {
  float: right;
  position: relative;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

.clear-completed:hover {
  text-decoration: underline;
}

.info {
  margin: 50px auto 0;
  color: #bfbfbf;
  font-size: 15px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-align: center;
}

.info p {
  line-height: 1;
}

.info a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}

.info a:hover {
  text-decoration: underline;
}

/*
	Hack to remove background from Mobile Safari.
	Can't use it globally since it destroys checkboxes in Firefox
*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .toggle-all,
  .todo-list li .toggle {
    background: none;
  }

  .todo-list li .toggle {
    height: 40px;
  }
}

@media (max-width: 430px) {
  .footer {
    height: 50px;
  }

  .filters {
    bottom: 10px;
  }
}

将 App.vue 组件拆分为多个组件

<template>
  <!-- 主体区域 -->
  <section id="app">
    <TodoHeader></TodoHeader>
    <TodoMain></TodoMain>
    <TodoFooter></TodoFooter>
  </section>
</template>

<script>
import TodoHeader from "@/components/TodoHeader.vue";
import TodoMain from "@/components/TodoMain.vue";
import TodoFooter from "@/components/TodoFooter.vue";

export default {
  components: {TodoFooter, TodoMain, TodoHeader},
  data () {
    return {

    }
  }
}
</script>

<style>

</style>

TodoHeader.vue

<script setup>

</script>

<template>
  <!-- 输入框 -->
  <header class="header">
    <h1>小黑记事本</h1>
    <input placeholder="请输入任务" class="new-todo" />
    <button class="add">添加任务</button>
  </header>
</template>

<style scoped>

</style>

TodoMain.vue

<script setup>

</script>

<template>
  <!-- 列表区域 -->
  <section class="main">
    <ul class="todo-list">
      <li class="todo">
        <div class="view">
          <span class="index">1.</span> <label>吃饭饭</label>
          <button class="destroy"></button>
        </div>
      </li>
    </ul>
  </section>
</template>

<style scoped>

</style>

TodoFooter.vue

<script setup>

</script>

<template>
  <!-- 统计和清空 -->
  <footer class="footer">
    <!-- 统计 -->
    <span class="todo-count">合 计:<strong> 1 </strong></span>
    <!-- 清空 -->
    <button class="clear-completed">
      清空任务
    </button>
  </footer>
</template>

<style scoped>

</style>

拆分后完成各类的源代码

App.vue

<template>
  <!-- 主体区域 -->
  <section id="app">
    <!-- 监听子组件触发的 add 事件,并在事件处理函数中处理这个任务名称 -->
    <TodoHeader @add="handleAddFather"></TodoHeader>
    <!-- : 是 Vue 中的属性绑定语法,表示将父组件的数据传递给子组件 list 是一个属性名,表示传递给 TodoMain 组件的数据 -->
    <TodoMain :list="list" @del="handleDelFather"></TodoMain>
    <TodoFooter :list="list" @clearAll="clearAllFather"></TodoFooter>
  </section>
</template>

<script>
import TodoHeader from "@/components/TodoHeader.vue";
import TodoMain from "@/components/TodoMain.vue";
import TodoFooter from "@/components/TodoFooter.vue";

// 渲染功能
// 1. 公共父组件 APP.vue 提供数据
// 2. 通过父传子的方式,将数据传递给 TodoMain
// 3. 利用 v-for 渲染

// 添加功能
// 1. 收集表单数据 ➡ v-model
// 2. 监听事件(回车 + 点击)
// 3. 子传父,将任务名称传递给父组件 App.vue
// 4. 进行添加 ➡ unshift

// 删除功能
// 1. 监听事件
// 2. 子传父,将删除的 id 传递给父组件
// 3. 父组件删除

// 底部合计
// 父传子渲染

// 清空功能
// 子传父清空数据

// 持久化存储
// 1. watch 深度监视
// 2. 往本地存储
// 3. 进入页面先读取本地
export default {
  components: {TodoFooter, TodoMain, TodoHeader},
  data () {
    return {
      list: JSON.parse(localStorage.getItem('list')) || [
        { id: 1, name: '打篮球'},
        { id: 2, name: '看电影'},
        { id: 3, name: '逛街'}
      ]
    }
  },
  methods: {
    handleAddFather (todoName) {
      this.list.unshift({
        id: Date.now(),
        name: todoName
      })
    },
    handleDelFather (id) {
      this.list = this.list.filter(item => (item.id !== id))
    },
    clearAllFather () {
      this.list = []
    }
  },
  watch: {
    list: {
      // deep: true:表示深度监听。这意味着不仅监听 list 属性本身的值变化,还会监听其内部对象或数组的变化
      deep: true,
      // handler(newValue):这是一个函数,当 list 的值发生变化时会被调用。参数 newValue 是 list 属性的新值
      handler (newValue) {
        // 使用 JSON.stringify(newValue) 将 newValue 转换为 JSON 字符串
        // 使用 localStorage.setItem('list', JSON.stringify(newValue)) 将转换后的字符串存储到浏览器的本地存储(localStorage)中,键名为 'list'
        localStorage.setItem('list', JSON.stringify(newValue))
      }
    }
  }
}
</script>

<style>

</style>

TodoFooter.vue

<script>
  export default {
    props: {
      list: Array
    },
    methods: {
      clearAll () {
        this.$emit('clearAll');
      }
    }
  }
</script>

<template>
  <!-- 统计和清空 -->
  <footer class="footer">
    <!-- 统计 -->
    <span class="todo-count">合 计:<strong> {{ list.length }} </strong></span>
    <!-- 清空 -->
    <button class="clear-completed" @click="clearAll">
      清空任务
    </button>
  </footer>
</template>

<style scoped>

</style>

TodoHeader.vue

<script>
  export default {
    data () {
      return {
        todoName: ''
      }
    },
    methods: {
      // 当调用这个方法时(例如,通过一个按钮点击事件),它会触发一个名为 add 的事件。
      // 事件传递一个参数,即 this.todoName,这通常是用户输入的任务名称。
      handleAdd () {
        if (this.todoName.trim === '') {
          alert('任务不能为空')
          return
        }
        // this.$emit:这是 Vue 实例的一个方法,用于触发一个事件。事件可以在父组件中被监听和响应
        this.$emit('add', this.todoName)
        // 清空
        this.todoName =''
      }
    }
  }
</script>

<template>
  <!-- 输入框 -->
  <header class="header">
    <h1>小黑记事本</h1>
    <!-- @keyup.enter 监听键盘回车-->
    <input placeholder="请输入任务" class="new-todo" v-model="todoName" @keyup.enter="handleAdd"/>
    <button class="add" @click="handleAdd">添加任务</button>
  </header>
</template>

<style scoped>

</style>

TodoMain.vue

<script>
  // export default:这是 ES6 模块的导出语法,表示将组件定义为默认导出
  // 这意味着你可以在其他文件中通过默认导入的方式引入这个组件
  export default {
    // props:这是 Vue 组件的一个选项,用于定义组件接受的外部参数(属性)
    // 这些参数从父组件传递到子组件,允许子组件接收外部数据
    props: {
      // 这里定义了一个名为 list 的属性,类型为 Array
      // 这意味着传递给 TodoMain 组件的 list 必须是一个数组
      list: Array
    },
    methods: {
      handleDel (id) {
        this.$emit('del', id)
      }
    }
  }
</script>

<template>
  <!-- 列表区域 -->
  <section class="main">
    <ul class="todo-list">
      <li class="todo" v-for="(item, index) in list" :key="index">
        <div class="view">
          <span class="index">{{ index + 1 }}</span> <label>{{ item.name }}</label>
          <button class="destroy" @click="handleDel(item.id)"></button>
        </div>
      </li>
    </ul>
  </section>
</template>

<style scoped>

</style>

转载请注明出处或者链接地址:https://www.qianduange.cn//article/16024.html
标签
评论
发布的文章

jQuery 教程 (一)

2024-08-24 23:08:43

select 多选联动

2024-08-24 23:08:41

jQuery2 高级教程(九)

2024-08-24 23:08:22

使用CDN提高jQuery加载速度

2024-08-24 23:08:21

jQuery2 秘籍(七)

2024-08-24 23:08:20

【ECharts】雷达图

2024-08-24 23:08:18

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!