- 收敛 easyflow-ui-admin 的 lint、格式和类型问题 - 修正 demo 页面与管理端前端构建失败点 - 验证 pnpm lint 与 pnpm build 均已通过
22 lines
438 B
Vue
22 lines
438 B
Vue
<template>
|
|
<div class="auth-title mb-8 w-full">
|
|
<h2
|
|
class="text-foreground mb-2.5 text-[1.9rem] font-semibold leading-[1.12] tracking-[-0.03em] sm:text-[2.1rem]"
|
|
>
|
|
<slot></slot>
|
|
</h2>
|
|
|
|
<p
|
|
class="text-muted-foreground max-w-[34rem] text-[0.97rem] leading-7 sm:text-[1rem]"
|
|
>
|
|
<slot name="desc"></slot>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.auth-title {
|
|
letter-spacing: 0;
|
|
}
|
|
</style>
|