91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用vue.js怎么實現一個圖書管理功能

發布時間:2021-04-17 17:50:34 來源:億速云 閱讀:208 作者:Leah 欄目:web開發

今天就跟大家聊聊有關使用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怎么實現一個圖書管理功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

什邡市| 惠水县| 普安县| 平昌县| 南乐县| 炉霍县| 阿勒泰市| 四子王旗| 汾西县| 深州市| 宜川县| 黔西县| 康定县| 亳州市| 昌吉市| 嘉禾县| 磴口县| 祥云县| 庆元县| 云阳县| 游戏| 铜鼓县| 遵义县| 阿城市| 宁乡县| 青龙| 林西县| 兰溪市| 兴化市| 灵台县| 景洪市| 罗定市| 新郑市| 拜泉县| 逊克县| 温宿县| 瑞丽市| 南康市| 万全县| 泽库县| 正蓝旗|