wms-antdvue/.svn/pristine/ce/cee642c585d2606d155a59de8f14a4f0a1778b7f.svn-base
2024-11-07 16:33:03 +08:00

38 lines
1001 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<a-list item-layout="horizontal" :data-source="listData" class="px-4">
<template #renderItem="{ item }">
<a-list-item>
<a-list-item-meta>
<template #title>
{{ item.title }}
</template>
<template #description>
{{ item.description }}<a-button type="link" class="ml-4">修改</a-button>
</template>
</a-list-item-meta>
</a-list-item>
</template>
</a-list>
</template>
<script lang="ts" setup>
const listData = [
{
title: '账户密码',
description: '绑定手机和邮箱,并设置密码,帐号更安全',
},
{
title: '绑定手机',
description: '已绑定手机号:+86189****4877',
},
{
title: '密保问题',
description: '未设置密保问题,密保问题可有效保护账户安全',
},
{
title: '个性域名',
description: '已绑定域名https://www.naiveadmin.com',
},
];
</script>