| 1234567891011121314151617181920212223242526272829 | <template>    <HcNewCard>        <template #header>            <el-button size="large" type="primary">                <HcIcon name="search-2" />                <span>搜索</span>            </el-button>        </template>        <template #extra>            extra        </template>        111        <template #action>            action        </template>    </HcNewCard></template><script setup>import { onMounted } from 'vue'onMounted(() => {})</script><style lang="scss" scoped></style>
 |