vue写的简单版todolist

Posted qianduanwriter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue写的简单版todolist相关的知识,希望对你有一定的参考价值。

上一张丑图:

技术图片

项目演示地址:http://47.75.195.199/todolist/
源码地址:https://github.com/chunsenye/...

<template>
  <div>
    <label >今天要做什么</label>
    <input type="text" v-model="text">
    <input type="button" value="提交" @click="submit">
    <ul>
      <li v-for="(item,index) in todolist" :key="index">
        {{index+1}}.{{item}}
        <input type="button" value=‘X‘ @click="deleteT(index)" :key="index">  
      </li>
    </ul>
  </div>
 
</template>

<script>
export default {
  name: "HelloWorld",
  data() {
    return {
      msg: "Welcome to Your Vue.js App",
      todolist: ["code to die", "never mind", "say goodbye"],
      text:‘‘
    };
  },
  methods: {
    submit() {
      this.todolist.push(this.text);
      this.text=‘‘;
    },
    deleteT(index) {
      this.todolist.splice(index,1);
    }
  }
};
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1,
h2 {
  font-weight: normal;
}
ul li {
  padding: 10px;
  font-size: 26px;
  list-style: none;
}

a {
  color: #42b983;
}
</style>

以上是关于vue写的简单版todolist的主要内容,如果未能解决你的问题,请参考以下文章

Vue初体验——用Vue实现简易版TodoList

vue 版todolist

vue版todoList

初识Vue,简单的todolist

vue简单todolist

vue之简单的todoList