index.vue 378 B

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