26 lines
375 B
Vue
26 lines
375 B
Vue
|
<script setup>
|
||
|
const props = defineProps({
|
||
|
rows: {}
|
||
|
})
|
||
|
console.log("rows:", props.rows)
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<el-container>
|
||
|
<el-header>
|
||
|
<el-button size="large" type="primary">添加</el-button>
|
||
|
</el-header>
|
||
|
<el-main>
|
||
|
<el-table v-for="rows"
|
||
|
</el-main>
|
||
|
</el-container>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|