2024-06-19 14:33:26 +08:00
|
|
|
<template>
|
2024-06-19 15:30:08 +08:00
|
|
|
<div class="app-container">
|
|
|
|
|
<TableCom />
|
|
|
|
|
</div>
|
2024-06-19 14:33:26 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-06-19 15:30:08 +08:00
|
|
|
import TableCom from '@/components/TableCom/index'
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
TableCom,
|
|
|
|
|
},
|
|
|
|
|
}
|
2024-06-19 14:33:26 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.demo {
|
|
|
|
|
box-shadow: 0 0 2px;
|
|
|
|
|
background-color: skyblue;
|
|
|
|
|
}
|
|
|
|
|
</style>
|