1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<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>