您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關使用vue.js怎么實現一個圖書管理功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
具體內容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <script src="vue.js"></script> </head> <body> <div id="app"> <table rules="rows" frame="hsides" bordercolor="black" width="600px"> <tr v-for="book in books " text-align="center"> <th>序號:</th> <td>{{book.id}}</td> <th>書名:</th> <td>{{book.name}}</td> <th>作者:</th> <td>{{book.author}}</td> <th>價格:</th> <td>{{book.price}}</td> <td> <button type="button" class="btn btn-danger" @click="delBook(book)">刪除</button> </td> </tr> </table> <br> <div id="add-book"> <legend>添加書籍</legend> <br> <div> <label for="">書名</label> <input type="text" v-model="book.name"> </div> <div> <label for="">作者</label> <input type="text" v-model="book.author"> </div> <div> <label for="">價格</label> <input type="text" v-model="book.price"> </div> <br> <button v-on:click="addBook()">添加</button> </div> </div> <script> var vm = new Vue({ el: '#app', data: { book: { id: 0, author: '', name: '', price: '' }, books: [{ id: 1, author: '曹雪芹', name: '紅樓夢', price: 32.0 }, { id: 2, author: '施耐庵', name: '水滸傳', price: 30.0 }, { id: 3, author: '羅貫中', name: '三國演義', price: 24.0 }, { id: 4, author: '吳承恩', name: '西游記', price: 20.0 }] }, methods: { addBook: function() { //計算書的id this.book.id = this.books.length + 1; this.books.push(this.book); //將input中的數據重置 this.book = {}; }, delBook: function(book) { this.books.splice(this.books.indexOf(book),1); } } }) </script> </body> </html>
看完上述內容,你們對使用vue.js怎么實現一個圖書管理功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。