VParking.vue
476 Bytes
<template>
<div class="theme-wrap">
<card-title> <span>停车场消息</span></card-title>
<div class="theme-body">123</div>
</div>
</template>
<script>
import CardTitle from './base/CardTitle'
export default {
name: 'VParking',
components: {
CardTitle
}
}
</script>
<style scoped lang="scss">
.theme-wrap {
height: 100%;
}
.theme-body {
height: calc(100% - 30px);
background-color: #ff0;
}
</style>