TitleBar_20190319172242.vue 304 B

12345678910111213141516171819
  1. <template>
  2. <div class="titleBar">经营数据管理系统</div>
  3. </template>
  4. <script>
  5. export default {
  6. }
  7. </script>
  8. <style>
  9. .titleBar {
  10. height: 50px;
  11. width: 100%;
  12. box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
  13. text-align: center;
  14. }
  15. </style>