12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div class="title-info">
- <div class="vertical-bar"></div>
- <div class="content">{{ content }}</div>
- </div>
- </template>
- <script>
- export default {
- props: {
- content: String,
- default: "",
- },
- };
- </script>
- <style lang="scss" scoped>
- .title-info {
- width: 100%;
- display: flex;
- align-items: center;
- height: 24px;
- line-height: 24px;
- .vertical-bar {
- width: 3px;
- height: 18px;
- background-color: #0084ff;
- margin-right: 7px;
- margin-top: 1px;
- }
- .content {
- font-size: 13px;
- font-weight: 600;
- color: #333333;
- }
- }
- </style>
|