您的位置:首页 > Web前端 > Vue.js

Vue组件开发Todolist、Todolist组件拆分

2018-10-31 16:55 239 查看

Todolist组件开发

<!DOCTYPE html>
 <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title></title>
      <script src="vue.js"></script>
  </head>
  <body>
       <div id="root">
            <div>
                  <input v-model="inputValue"/>
                  <button @click="handClick">提交</button>
            </div>
            <ul>
                  <li v-for="(item,index) of list":key="index"> {{item}}</li>
            </ul>
       </div>
  <script>
   new Vue({
         el:"#root",
         data:{
             inputValue:'',
              list:[]
          },
         methods:{
             handClick:function(){
                this.list.push(this.inputValue)
                this.inputValue=''
             }
         }
   })
  </script>
 </body>
</html>

Todolist组件拆分

<!DOCTYPE html>
<html lang="en">
 <head>
     <meta charset="UTF-8">
     <title>todolist组件拆分</title>
     <script src="vue.js"></script>
 </head>
 <body>
  <div id="root">
       <div>
           <input v-model="inputValue"/>
                 <button @click="handClick">提交</button>
       </div>
       <ul>
          <todo-item v-for="(item,index) of list"
                :key="index"
                :content="item"
           >
           </todo-item>
       </ul>
  </div>
  
  <script>
   //全局组件
   Vue.component('todo-item',{
    props:['content'],
    template:'<li>{{content}}</li>'
   })
   
   //局部组件,需要用components注册这个组件
//   var TodoItem={
//    template:'<li>item</li>'
//   }
   new Vue({
    el:"#root",
//    components:{
//     'todo-item':TodoItem
//    },
    data:{
     inputValue:'',
     list:[]
    },
    methods:{
     handClick:function(){
      this.list.push(this.inputValue)
      this.inputValue=''
     }
    }
   })
  </script>
 </body>
</html>
*每一个组件都是vue的实例,vue是由一个个组件实例组成的

 

阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: