| 12345678910111213141516171819202122 |
- <script setup lang="ts">
- const props = defineProps({
- title: {
- type: String,
- default: ''
- }
- })
- </script>
- <template>
- <div class="relative flex lh-50px justify-start">
- <div style="background: var(--el-color-primary)" class="w-5px mt-13px mr-10px ml-0px h-26px"></div> <h2>{{ props.title}}</h2>
- </div>
- </template>
- <style scoped lang="scss">
- </style>
|