SOURCE

console 命令行工具 X clear

                    
>
console
var Main = {
    data() {
        return {
            tableData: [],
            formOptions: {
                schema: [{
                    component: 'Input',
                    componentProps: { placeholder: '请输入订单编号' },
                    fieldName: 'code',
                    label: '订单编号',
                }],
                collapsed: true,
                showCollapseButton: true,
                submitOnEnter: false,
            },
            gridOptions: {
                border: true,
                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 < 3; 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.33"></script>
<script src="https://unpkg.com/vxe-table@4.13.15"></script>
<!-- 使用 cdn 引用方式需要注意是否锁定版本,默认指向最新版本 -->

<div id="app">
    <div>
      <vxe-grid v-bind="gridOptions" v-bind:formOptions="formOptions"></vxe-grid>
    </div>
</div>
@import url("https://unpkg.com/vxe-pc-ui@4.5.33/lib/style.css");
@import url("https://unpkg.com/vxe-table@4.13.15/lib/style.css");