在 GitHub 上查看
Webpack
学习如何在你的项目中使用 Bootstrap 表格 Vue 组件,使用 webpack。
导入 JavaScript
通过在你的应用程序入口点(通常是 index.js
或 app.js
)添加以下代码行,导入 Bootstrap 表格的 JavaScript。
import 'bootstrap-table'
当然,你也可以导入你需要的主题、区域设置或扩展
// import theme
import 'bootstrap-table/dist/themes/materialize/bootstrap-table-materialize.min.js'
// import locale
import 'bootstrap-table/dist/locale/bootstrap-table-zh-CN.min.js'
// import extension and dependencies
import 'tableexport.jquery.plugin'
import 'bootstrap-table/dist/extensions/export/bootstrap-table-export.min.js'
默认情况下,Bootstrap 表格依赖于 jQuery、Bootstrap 和 Popper,这些被定义为 peerDependencies,这意味着你需要确保使用 npm install --save jquery bootstrap popper.js
将它们都添加到你的 package.json
文件中。
导入 CSS
通过在你的应用程序入口点添加以下代码行,导入 Bootstrap 表格的 CSS。
import 'bootstrap-table/dist/bootstrap-table.min.css'
当然,你也可以导入你需要的主题或扩展
// import theme
import 'bootstrap-table/dist/themes/materialize/bootstrap-table-materialize.min.css'
// import extension
import 'bootstrap-table/dist/extensions/fixed-columns/bootstrap-table-fixed-columns.min.css'
使用
<template>
<BootstrapTable
:columns="columns"
:data="data"
:options="options"
/>
</template>
<script>
import BootstrapTable from 'bootstrap-table/dist/bootstrap-table-vue.js'
export default {
components: {
BootstrapTable
},
data () {
return {
columns: [
{
title: 'Item ID',
field: 'id'
},
{
field: 'name',
title: 'Item Name'
},
{
field: 'price',
title: 'Item Price'
}
],
data: [
{
id: 1,
name: 'Item 1',
price: '$1'
}
],
options: {
search: true,
showColumns: true
}
}
}
}
</script>
启动模板
在 bootstrap-table-example 项目中有一个 vue-starter 示例。
plugins/jquery.js
import jQuery from 'jquery'
window.jQuery = jQuery
plugins/table.js
import 'bootstrap/dist/css/bootstrap.min.css'
import 'bootstrap-table/dist/bootstrap-table.min.css'
import './jquery.js'
import Vue from 'vue'
import 'bootstrap'
import 'bootstrap-table/dist/bootstrap-table.js'
import BootstrapTable from 'bootstrap-table/dist/bootstrap-table-vue.esm.js'
Vue.component('BootstrapTable', BootstrapTable)
main.js
import './plugins/table.js'
View.vue
<template>
<BootstrapTable :columns="columns" :data="data" :options="options"></BootstrapTable>
</template>
<script>
export default {
data () {
return {
columns: [
{
title: 'Item ID',
field: 'id'
},
{
field: 'name',
title: 'Item Name'
}, {
field: 'price',
title: 'Item Price'
}
],
data: [
{
id: 1,
name: 'Item 1',
price: '$1'
},
{
id: 2,
name: 'Item 2',
price: '$2'
},
{
id: 3,
name: 'Item 3',
price: '$3'
},
{
id: 4,
name: 'Item 4',
price: '$4'
},
{
id: 5,
name: 'Item 5',
price: '$5'
}
],
options: {
search: true,
showColumns: true
}
}
}
}
</script>