You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
920 B
34 lines
920 B
|
2 years ago
|
<template>
|
||
|
|
<div>
|
||
|
|
<vxe-table
|
||
|
|
:align="allAlign"
|
||
|
|
:data="tableData">
|
||
|
|
<vxe-column type="seq" width="60"></vxe-column>
|
||
|
|
<vxe-column field="name" title="Name"></vxe-column>
|
||
|
|
<vxe-column field="sex" title="Sex"></vxe-column>
|
||
|
|
<vxe-column field="age" title="Age"></vxe-column>
|
||
|
|
</vxe-table>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
allAlign: null,
|
||
|
|
tableData: [
|
||
|
|
{ id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', age: 28, address: 'test abc' },
|
||
|
|
{ id: 10002, name: 'Test2', role: 'Test', sex: 'Women', age: 22, address: 'Guangzhou' },
|
||
|
|
{ id: 10003, name: 'Test3', role: 'PM', sex: 'Man', age: 32, address: 'Shanghai' },
|
||
|
|
{ id: 10004, name: 'Test4', role: 'Designer', sex: 'Women', age: 24, address: 'Shanghai' }
|
||
|
|
]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {},
|
||
|
|
computed: {}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
</style>
|