2 18.分类组件开发和跳转
分类组件
src/components/IndexNavs.vue
<template>
<el-row :gutter="20" class="mt-5">
<el-col :span="3" :offset="0" v-for="(item,index) in iconNavs" :key="index">
<el-card shadow="hover" @click="$router.push(item.path)">
<div class="flex flex-col items-center justify-center cursor-pointer">
<el-icon :size="16" :class="item.color">
<component :is="item.icon"></component>
</el-icon>
<span class="text-sm mt-2">{{ item.title }}</span>
</div>
</el-card>
</el-col>
</el-row>
</template>
<script setup>
const iconNavs = [
{
icon: "user",
color: "text-light-blue-500",
title: "用户",
path: "/user/list"
},
{
icon: "shopping-cart",
color: "text-violet-500",
title: "商品",
path: "/goods/list"
},
{
icon: "tickets",
color: "text-fuchsia-500",
title: "订单",
path: "/order/list"
},
{
icon: "chat-dot-square",
color: "text-teal-500",
title: "评价",
path: "/comment/list"
},
{
icon: "picture",
color: "text-rose-500",
title: "图库",
path: "/image/list"
},
{
icon: "bell",
color: "text-green-500",
title: "公告",
path: "/notice/list"
},
{
icon: "set-up",
color: "text-grey-500",
title: "配置",
path: "/setting/base"
},
{
icon: "files",
color: "text-yellow-500",
title: "优惠劵",
path: "/coupon/list"
},
]
</script>
...略
Last updated