SOURCE

console 命令行工具 X clear

                    
>
console
var Main = {
    data () {
        return {
            tableData: [],
            gridOptions: {
                border: true,
                size: 'mini',
                height: 300,
                toolbarConfig: {
                    custom: true
                },
                scrollY: {
                    enabled: true,
                    gt: 0,
                },
                columns: [
                    {type: 'seq', width: 60},
                    {field: 'name',title: 'Name'},
                    {field: 'sex',title: 'Sex'},
                    {field: 'date',title: 'Date'},
                    {field: 'address',title: 'Address'}
                ],
                data: []
            }
        }
    },
    created () {
        var list1 = []
        var list2 = []
        for(var index = 0; index < 50; index++){
            list1.push({
                name: 'test' + index,
                role: 'developer',
                sex: 'Man',
                date: '2019-05-01',
                time: 1556677810888 + index * 500,
                region: 'ShenZhen',
                address: 'address abc' + index
            })
            list2.push({
                name: 'test' + index,
                role: 'developer',
                sex: 'Man',
                date: '2019-05-01',
                time: 1556677810888 + index * 500,
                region: 'ShenZhen',
                address: 'address abc' + index
            })
        }
        this.tableData = list1
        this.gridOptions.data = list2
    }
};

Vue.createApp(Main).use(VXETable).mount('#app')
<script src="https://unpkg.com/vue@3.5.13">

</script>
<script src="https://unpkg.com/xe-utils">

</script>
<script src="https://unpkg.com/vxe-pc-ui@4.5.29">

</script>
<script src="https://unpkg.com/vxe-table@4.13.8">

</script>
<!-- 使用 cdn 引用方式需要注意是否锁定版本,默认指向最新版本 -->

<div id="app">
	<div>
		<p>Grid 演示</p>
		<vxe-grid v-bind="gridOptions"></vxe-grid>
	</div>
</div>
@import url("https://unpkg.com/vxe-pc-ui@4.5.29/lib/style.css");
@import url("https://unpkg.com/vxe-table@4.13.8/lib/style.css");