用vue脚手架写的简易留言板

简介: 用vue脚手架写的简易留言板

1.配置安装好脚手架

2.留言板:

<template>
  <div class="about">
    <input type="text" v-model="value" @keydown.enter="add" />
    <button @click="add">提交</button>
    <h1>{{value}}</h1>
    <h3>未完成({{listno.length}}):</h3>
    <button @click="dels1(index)">全部删除</button>
    <table>
      <tr>
        <th>选项</th>
        <th>内容</th>
        <th>提交时间</th>
        <th>间隔时间</th>
        <th>操作</th>
      </tr>
      <tr v-for="(item, index) in listno" :key="index">
        <td>
          <input type="checkbox" @click.prevent="changeYes($event,item,index)" />
        </td>
        <td>
          <span v-if="item.isShow">{{item.text}}</span>
          <input type="text" v-model="item.text" @blur="updateblur1(index)" v-else autofocus />
        </td>
        <td>{{item.times}}</td>
        <td>{{item.time | timeFilters}}</td>
        <td>
          <button @click="del1(index)">删除</button>
          <button @click="update1(index)">修改</button>
        </td>
      </tr>
    </table>
    <h3>已完成({{listyes.length}}):</h3>
    <button @click="dels2(index)">全部删除</button>
    <table>
      <tr>
        <th>选项</th>
        <th>内容</th>
        <th>提交时间</th>
        <th>间隔时间</th>
        <th>操作</th>
      </tr>
      <tr v-for="(item, index) in listyes" :key="index">
        <td>
          <input checked type="checkbox" name id @click.prevent="changeno($event,item,index)" />
        </td>
        <td>
          <span v-if="item.isShow">{{item.text}}</span>
          <input type="text" v-model="item.text" @blur="updateblur2(index)" v-else autofocus />
        </td>
        <td>{{item.times}}</td>
        <td>{{item.time |timeFilters}}</td>
        <td>
          <button @click="del2(index)">删除</button>
          <button @click="update2(index)">修改</button>
        </td>
      </tr>
    </table>
  </div>
</template>
<script>
export default {
  filters: {
    timeFilters(ms) {
      let daystr = "";
      let date = new Date();
      let now = date.getTime();
      let rel = (now - ms) / 1000 / 60;
      // console.log(now/1000/60)
      // console.log(ms/1000/60)
      // console.log(rel)
      if (rel<5) {
        daystr = "刚刚";
      } else if (rel >= 5&&rel<10) {
        daystr = "5分钟前";
      } else if (rel >= 10&&rel<30) {
        daystr = "10分钟前";
      } else if (rel >= 30&&rel<40) {
        daystr = "30分钟前";
      }else if (rel >= 40&&rel<60) {
        daystr = "40分钟前";
      } else if (rel >= 60&&rel<120) {
        daystr = "1小时前";
      } else if (rel >= 120&&rel<300) {
        daystr = "2小时前";
      } else if (rel >= 300&&rel<1440) {
        daystr = "5小时前";
      } else if (rel >= 1440&&rel<2880) {
        daystr = "1天前";
      } else if (rel >= 2880&&rel<10080) {
        daystr = "2天前";
      } else if (rel >= 10080&&rel<43200) {
        daystr = "7天前";
      } else if (rel >= 43200) {
        daystr = "30天前";
      } 
      return daystr;
    }
  },
  data() {
    return {
      value: "",
      listyes: [],
      listno: [],
    };
  },
  created() {
    let listno = localStorage.listno;
    if (listno != undefined) {
      this.listno = JSON.parse(listno);
    }
    let listyes = localStorage.listyes;
    if (listyes != undefined) {
      this.listyes = JSON.parse(listyes);
    }
  },
  methods: {
    // 添加提交
    add() {
      if (this.value !== "") {
        this.listno.push({
          isShow: true,
          text: this.value,
          time: new Date().getTime(),
          times: new Date().toLocaleString().replace(/\//g, "-")
        });
        this.value = "";
        localStorage.listno = JSON.stringify(this.listno);
      }
    },
    updateblur1(index) {
      this.listno[index].isShow = true;
      localStorage.listno = JSON.stringify(this.listno);
    },
    updateblur2(index) {
      this.listyes[index].isShow = true;
      localStorage.listyes = JSON.stringify(this.listyes);
    },
    // 全部删除未完成
    dels1(index) {
      if (this.listno.length == 0) {
        alert("数据为零,删除不了");
      }
      this.listno.splice(index, this.listno.length);
      localStorage.listno = JSON.stringify(this.listno);
    },
    // 全部删除已完成
    dels2(index) {
      if (this.listyes.length == 0) {
        alert("数据为零,删除不了");
      }
      this.listyes.splice(index, this.listyes.length);
      localStorage.listyes = JSON.stringify(this.listyes);
    },
    // 删除未完成
    del1(index) {
      this.listno.splice(index, 1);
      localStorage.listno = JSON.stringify(this.listno);
    },
    // 修改未完成
    update1(index) {
      // let x = prompt("请修改");
      // console.log(x);
      // this.listno.splice(index, 1, x);
      this.listno[index].isShow = false;
      localStorage.listno = JSON.stringify(this.listno);
    },
    // 删除已完成
    del2(index) {
      this.listyes.splice(index, 1);
      localStorage.listyes = JSON.stringify(this.listyes);
    },
    // 修改已完成
    update2(index) {
      // let x = prompt("请修改");
      // console.log(x);
      // this.listyes.splice(index, 1, x);
      this.listyes[index].isShow = false;
      localStorage.listyes = JSON.stringify(this.listyes);
    },
    // 点击复选框显示到已完成
    changeYes(e, item, index) {
      // console.log(e.target.checked)
      var checked = e.target.checked;
      if (checked) {
        this.listyes.push(item);
        this.listno.splice(index, 1);
      }
      localStorage.listno = JSON.stringify(this.listno);
      localStorage.listyes = JSON.stringify(this.listyes);
    },
    // 点击显示到未完成
    changeno(e, item, index) {
      // console.log(e.target.checked)
      var checked = e.target.checked;
      if (!checked) {
        this.listno.push(item);
        this.listyes.splice(index, 1);
      }
      localStorage.listyes = JSON.stringify(this.listyes);
      localStorage.listno = JSON.stringify(this.listno);
    }
  }
};
</script>
<style scoped>
table {
  margin: 0 auto;
  /* width: 600px; */
}
td,th{
  width: 300px;
}
h1 {
  height: 20px;
}
li {
  list-style-type: none;
}
</style>
目录
相关文章
|
8天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
8天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
8天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
8天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
7天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
9天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
7天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
9天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
14天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发
|
14天前
|
存储 JavaScript
Vue 状态管理工具vuex
Vue 状态管理工具vuex