Vue中搭配Bootstrap實現Vue的列表增刪功能

在日常開發中,我們可以用 “拿來主義” 借助Bootstarp現成的一些樣式,快速生成我們想要的頁面佈局,避免書寫大量的HTML和CSS代碼,省下瞭許多不必要的時間。

當我們想要生成表單表格時我們可以查看Bootstrap的官方文檔,來選擇我們想要的樣式,並根據自己的一些實際情況或者個人喜好進行一定的修改。瞭解Bootstrap

為瞭直接搭配Vue使用,我們把表單代碼直接復制到 root 容器裡面。

<div id="root">
    <!-- 卡片區域 -->
    <div class="card">
        <div class="card-header">添加水果</div>
        <div class="card-body">
            <!-- 添加品牌的表單區域 -->
            <form>
                <div class="form-row align-items-center">
                    <div class="col-auto">
                        <div class="input-group mb-2">
                            <div class="input-group-prepend">
                                <div class="input-group-text">水果名稱</div>
                            </div>
                            <input type="text" class="form-control" placeholder="請輸入水果名字">
                        </div>
                    </div>
                    <div class="col-auto">
                        <button type="submit" class="btn btn-primary mb-2">添加</button>
                    </div>
                </div>
            </form>
        </div>
    </div>
</div>

這邊借助一下Bootstrap中的card(卡片)進行佈局,擴充一下寬度。 

接下來我們在借助Bootstrap生成一個表格部分:

<table class="table table-border table-hover table-striped">
    <thead>
        <tr>
            <th scope="col">ID</th>
            <th scope="col">水果名稱</th>
            <th scope="col">狀態</th>
            <th scope="col">添加時間</th>
            <th scope="col">操作</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th scope="row">1</th>
            <td>蘋果</td>
            <td>
                <div class="custom-control custom-switch">
                    <input type="checkbox" class="custom-control-input" id="customSwitch1">
                    <label class="custom-control-label" for="customSwitch1">已禁用</label>
                </div>
            </td>
            <td>時間</td>
            <td>
                <a href="javascript:'" rel="external nofollow"  rel="external nofollow" >刪除</a>
            </td>
        </tr>
    </tbody>
</table>

表格結構寫完之後,接下裡我們就要使用Vue對表格進行填充數據瞭。

<script src="/Vue.js/vue.js"></script>
<script>
    Vue.config.productionTip = false; //阻止 vue 在啟動時生成生產提示
    const vm = new Vue({
        data: {
            list: [
                { id: 1, name: '蘋果', status: true, time: new Date() },
                { id: 2, name: '香蕉', status: true, time: new Date() },
                { id: 3, name: '葡萄', status: false, time: new Date() },
                { id: 4, name: '桃子', status: true, time: new Date() },
            ]
        }
    })
    vm.$mount('#root')
</script>

接下裡給刪除操作綁定點擊事件,如下:

給a鏈接綁定一個刪除的點擊事件。

我們使用filter進行過濾掉刪除的數組,當前循環項的item.id不等於我們要刪的id,就返回。

接下來我們實現水果的添加功能。

給輸入框設置雙向綁定事件,給表單設置提交事件並添加阻止事件。

定義用戶輸入的水果名稱以及下一個可用的ID :

給綁定的add事件添加判斷行為:

現在基本的添加刪除功能已經完成,請看效果:

完整代碼:

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="/Bootstrap/bootstrap.css" rel="external nofollow" >
    <style>
        body {
            padding: 15px;
 
        }
    </style>
</head>
 
<body>
    <div id="root">
        <!-- 卡片區域 -->
        <div class="card">
            <div class="card-header">添加水果</div>
            <div class="card-body">
                <!-- 添加品牌的表單區域 -->
                <form @submit.prevent="add">
                    <div class="form-row align-items-center">
                        <div class="col-auto">
                            <div class="input-group mb-2">
                                <div class="input-group-prepend">
                                    <div class="input-group-text">水果名稱</div>
                                </div>
                                <input type="text" class="form-control" placeholder="請輸入水果名字" v-model.trim="brand">
                            </div>
                        </div>
                        <div class="col-auto">
                            <button type="submit" class="btn btn-primary mb-2">添加</button>
                        </div>
                    </div>
                </form>
            </div>
        </div>
 
        <!-- 表格區域 -->
        <table class="table table-border table-hover table-striped">
            <thead>
                <tr>
                    <th scope="col">ID</th>
                    <th scope="col">水果名稱</th>
                    <th scope="col">狀態</th>
                    <th scope="col">添加時間</th>
                    <th scope="col">操作</th>
                </tr>
            </thead>
            <tbody>
                <tr v-for="item in list" :key="item.id">
                    <th scope="row">{{item.id}}</th>
                    <td>{{item.name}}</td>
                    <td>
                        <div class="custom-control custom-switch">
                            <input type="checkbox" class="custom-control-input" :id="'customSwitch'+item.id"
                                v-model="item.status">
                            <label class="custom-control-label" :for="'customSwitch'+item.id"
                                v-if="item.status">已啟用</label>
                            <label class="custom-control-label" :for="'customSwitch'+item.id" v-else>已禁用</label>
                        </div>
                    </td>
                    <td>{{item.time}}</td>
                    <td>
                        <a href="javascript:'" rel="external nofollow"  rel="external nofollow"  @click="remove(item.id)">刪除</a>
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
 
 
    <script src="/Vue.js/vue.js"></script>
    <script>
        Vue.config.productionTip = false; //阻止 vue 在啟動時生成生產提示
        const vm = new Vue({
            data: {
                // 用戶輸入的水果名稱
                brand: '',
                // nextID是下一個可用的 ID
                nextId: 5,
                list: [
                    { id: 1, name: '蘋果', status: true, time: new Date() },
                    { id: 2, name: '香蕉', status: true, time: new Date() },
                    { id: 3, name: '葡萄', status: false, time: new Date() },
                    { id: 4, name: '桃子', status: true, time: new Date() },
                ]
            },
            methods: {
                // 點擊鏈接刪除對應的水果
                remove (id) {
                    this.list = this.list.filter(item => item.id !== id)
                },
                // 阻止表單的默認提交行為
                // 如果判斷到brand的值為空字符串,則return出去
                add () {
                    if (this.brand === '') return alert('必須輸入水果')
                    // 如果沒有被return出去,應該執行添加邏輯
                    // 1.先把要添加的水果對象整理出來
                    const obj = {
                        id: this.nextId,
                        name:this.brand,
                        status:true,
                        time:new Date()
                    }
                    // 2.往this.list數組中push步驟一中得到的對象
                    this.list.push(obj)
                    // 3.清空this.brand讓this.nextID自增+1
                    // this.brand=''
                    this.nextId++ 
                },
            }
        })
        vm.$mount('#root')
    </script>
</body>
 
</html>

到此這篇關於Vue中搭配Bootstrap實現Vue的列表增刪功能的文章就介紹到這瞭,更多相關vue bootstrap列表增刪內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: