首先,确保你的项目中已经安装了 Vant。如果没有安装,可以使用以下命令:
npm install vant
然后,在你的 Vue 组件中引入 Vant List 组件:
<template>
<div>
<van-list>
<van-cell v-for="(item, index) in dataList" :key="index">
{{ item }}
</van-cell>
</van-list>
</div>
</template>
<script>
import { List, Cell } from 'vant';
export default {
components: {
[List.name]: List,
[Cell.name]: Cell,
},
data() {
return {
dataList: ['Item 1', 'Item 2', 'Item 3', 'Item 4'],
};
},
};
</script>
在上面的例子中,我们引入了 Vant 的 List 和 Cell 组件,并在模板中使用了 van-list 标签包裹 van-cell 组件,通过 v-for 渲染数据列表。
你可以根据需要配置 List 组件,例如设置列表的样式、分隔符等。具体的配置选项可以参考 Vant 官方文档。
确保在项目中引入了 Vant 的样式文件,以确保样式正确显示。
转载请注明出处:http://www.zyzy.cn/article/detail/5684/Vant