mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
c2ecb3a773
- Add more cases for running ssr tests
38 lines
785 B
Vue
38 lines
785 B
Vue
<template>
|
|
<el-table v-loading="loading" :data="tableData" style="width: 100%">
|
|
<el-table-column prop="date" label="Date" width="180" />
|
|
<el-table-column prop="name" label="Name" width="180" />
|
|
<el-table-column prop="address" label="Address" />
|
|
</el-table>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const loading = ref(true)
|
|
|
|
const tableData = [
|
|
{
|
|
date: '2016-05-02',
|
|
name: 'John Smith',
|
|
address: 'No.1518, Jinshajiang Road, Putuo District',
|
|
},
|
|
{
|
|
date: '2016-05-04',
|
|
name: 'John Smith',
|
|
address: 'No.1518, Jinshajiang Road, Putuo District',
|
|
},
|
|
{
|
|
date: '2016-05-01',
|
|
name: 'John Smith',
|
|
address: 'No.1518, Jinshajiang Road, Putuo District',
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|