vue簡(jiǎn)易記事本開(kāi)發(fā)詳解
本文實(shí)例為大家分享了vue實(shí)現(xiàn)易記事本的具體代碼,供大家參考,具體內(nèi)容如下
css代碼
#todoapp { margin: 0 400px; width: 600px; background-color: gray; text-align: center;}.content { margin:0px 100px;}.todo { margin: 10px; text-align: left; background-color:green;}.btn { float: right; background-color: lawngreen;}.clear{ background-color: lightseagreen;}.list{ margin-left: 10px;}
html代碼加js代碼
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initial-scale=1.0'> <title>Document</title> <link rel='stylesheet' href='http://www.piao2010.com/bcjs/css/index.css' > <script src='http://www.piao2010.com/bcjs/js/vue.js' type='text/javascript' charset='utf-8'></script></head><body> <div id='todoapp'> <div class='header'><h1>小黑記事本</h1><input type='text' v-model='inputValue' placeholder='請(qǐng)輸入任務(wù)'> <button @click='add'>添加</button> </div> <div class='content'><ul v-for='(item,index) in list'> <div class='todo'><span class='index'>{{index+1}}</span><label class='list'>{{item}}</label><button @click='remove(index)'>刪除</button> </div> </ul> </div> <div> <button @click='clearBoth' class='clear'>全部清除</button> </div> </div> <script>var app = new Vue({ el:'#todoapp', data: { list:['吃飯飯','打游戲','吃西瓜'], inputValue:'' }, methods: {remove:function(index){ this.list.splice(index,1)},add: function () { this.list.push(this.inputValue)},clearBoth:function(){ this.list.splice(0,this.list.length)} }}) </script></body></html>
運(yùn)行效果截圖
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. python如何換行輸出2. Python使用urlretrieve實(shí)現(xiàn)直接遠(yuǎn)程下載圖片的示例代碼3. Python:UserWarning:此模式具有匹配組。要實(shí)際獲得組,請(qǐng)使用str.extract4. Android打包篇:Android Studio將代碼打包成jar包教程5. Java使用Tesseract-Ocr識(shí)別數(shù)字6. python如何計(jì)算圓的面積7. Android Studio中一套代碼多渠道打包的實(shí)現(xiàn)方法8. vue實(shí)現(xiàn)web在線聊天功能9. 解決Android Studio 格式化 Format代碼快捷鍵問(wèn)題10. Vue實(shí)現(xiàn)聊天界面
