基于vue的购物车清单
<!doctype html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="node_modules\bootstrap\dist\css\bootstrap.css"> </head> <body> <div id="app"> <!-- bootstrap 基本样式+增强样式--> <div class="container"> <div class="row"> <h2 class="text-warning">购物车</h2> <table class="table table-hover table-bordered"> <tr> <th>全选 <input type="checkbox" v-model="checkAll"></th> <td>商品</td> <td>单价</td> <td>数量</td> <td>小计</td> <td>操作</td> </tr> <!-- 括号与in之间要加空格不然会语法错误 --> <tr v-for="(product,index) in products"> <td><input type="checkbox" v-model="product.isSelected"></td> <!-- 使用vue指令动态绑定图片的相关信息 -->