您好,登錄后才能下訂單哦!
本篇內容主要講解“Vue動態生成表格的行和列如何實現”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Vue動態生成表格的行和列如何實現”吧!
具體的實現代碼如下:
<template> <div class="boxShadow"> <div > <el-table :data="tables" ref="multipleTable" tooltip-effect="dark" @selection-change='selectArInfo'> <el-table-column type="selection" width="45px"></el-table-column> <el-table-column label="序號" width="62px" type="index"> </el-table-column> <template v-for='(col) in tableData'> <el-table-column sortable :show-overflow-tooltip="true" :prop="col.dataItem" :label="col.dataName" :key="col.dataItem" width="124px"> </el-table-column> </template> <el-table-column label="操作" width="80" align="center"> <template slot-scope="scope"> <el-button size="mini" class="del-com" @click="delTabColOne()" ><i class="iconfont icon-shanchu"></i></el-button> </template> </el-table-column> </el-table> </div> </div> </template>
<script> import '../../assets/css/commlist.css' import '../../assets/css/commscoped.sass' export default { data () { return { tables: [{ xiaoxue: '福蘭', chuzhong: '加芳', gaozhong: '蒲廟', daxue: '西安', yanjiusheng: '西安', shangban: '北京' }, { xiaoxue: '南坊', chuzhong: '禮泉', gaozhong: '禮泉', daxue: '西安', yanjiusheng: '西安', shangban: '南坊' }, { xiaoxue: '馬山', chuzhong: '加芳', gaozhong: '蒲廟', daxue: '西安', yanjiusheng: '重慶', shangban: '北京' }], tableData: [{ dataItem: 'xiaoxue', dataName: '小學' }, { dataItem: 'chuzhong', dataName: '初中' }, { dataItem: 'gaozhong', dataName: '高中' }, { dataItem: 'daxue', dataName: '大學' }, { dataItem: 'yanjiusheng', dataName: '研究生' }, { dataItem: 'shangban', dataName: '上班' }] } }, methods: { // 獲取表格選中時的數據 selectArInfo (val) { this.selectArr = val } } } </script>
Vue具體輕量級框架、簡單易學、雙向數據綁定、組件化、數據和結構的分離、虛擬DOM、運行速度快等優勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數據和dom,可以大大提升訪問速度和用戶體驗。
到此,相信大家對“Vue動態生成表格的行和列如何實現”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。