• Vuejs -01 todolist制作


    <template>
      <div id="app">
        <h1 v-text="title" ></h1>
        <input v-model="newItem" v-on:keyup.enter="addNew"/>
        <ul>
          <li v-for="item in items" v-bind:class="{finished: item.isFinished}" v-on:click="toggleFinish(item)"> 
            {{item.label}}
          </li>
        </ul>
      </div>
    </template>
    
    <script>
    import Store from './store'
    console.log(Store)
    export default {
      data:function() {
         return {
           title: 'this is a todo list',
           items: (Store.fetch() == null ? []: Store.fetch()),
           newItem:''
         }
      },
      watch:{
        items: {
           handler:function(items) {
              Store.save(items)
           },
           deep:true
        }
      },
      methods:{
        toggleFinish: function(item) {
          item.isFinished = !item.isFinished;
          console.log(item)
        },
        addNew: function() {
           this.items.push({
            label: this.newItem,
            isFinished: false
           }),
           this.newItem = ''
        }
    
      }
    
    }
    </script>
    
    <style>
    #app {
      font-family: 'Avenir', Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-align: center;
      color: #2c3e50;
      margin-top: 60px;
    }
    </style>
  • 相关阅读:
    jquery文本折叠
    物理小词典
    程序员的十层楼
    各种语言的hello world
    读书遇到的一些概念
    银行业务一些概念
    mysql 基本操作
    oracle 基本操作
    maven 基本操作
    ubuntu JavaWeb环境搭建
  • 原文地址:https://www.cnblogs.com/xrwm97/p/6243175.html
Copyright © 2020-2023  润新知