zhgdyun/src/views/projectAdmin/jlw/CIM/leftCenter.vue

25 lines
420 B
Vue
Raw Normal View History

<template>
<Card :title="title">
<Table :thead="['变更时间', '变更类型']" />
</Card>
</template>
<script>
import Card from '../components/Card.vue'
import Table from '../components/Table.vue'
export default {
components: { Card, Table },
props: {
title: {
type: String,
default: 'default title'
}
},
data() {
return {}
}
}
</script>
<style lang="less" scoped></style>