uniapp联动左侧导航栏分类?

html

html 复制代码
<template>
	<view class="sidebar-container">
		<view class="sidebar">
			<view class="sidebar-header">
				Logo
			</view>
			<view class="sidebar-menu">
				<view class="sidebar-item" v-for="(item, index) in sidebarItems" :key="index"
					@click="handleSidebarItemClick(item)">
					{{ item.title }}
				</view>
			</view>
		</view>
		<view class="main-content">
			<!-- 主要内容区域 -->
			<!-- 这里放主要内容 -->
		</view>
	</view>
</template>

js

javascript 复制代码
<script>
	export default {
		data() {
			return {
				sidebarItems: [{
						title: '菜单项1'
					},
					{
						title: '菜单项2'
					},
					{
						title: '菜单项3'
					},
					{
						title: '菜单项4'
					}
				]
			};
		},
		methods: {
			handleSidebarItemClick(item) {
				// 处理侧边栏菜单项点击事件
				console.log('点击了菜单项:', item);
			}
		}
	};
</script>

css

css 复制代码
<style>
	.sidebar-container {
		display: flex;
	}

	.sidebar {
		background-color: #f0f0f0;
		width: 200px;
	}

	.sidebar-header {
		padding: 20px;
		font-weight: bold;
		border-bottom: 1px solid #ccc;
	}

	.sidebar-menu {
		margin-top: 20px;
	}

	.sidebar-item {
		padding: 10px;
		cursor: pointer;
		transition: background-color 0.3s;
	}

	.sidebar-item:hover {
		background-color: #e0e0e0;
	}

	.main-content {
		flex: 1;
		padding: 20px;
	}
</style>
相关推荐
matlabgoodboy2 分钟前
代码编写java代做matlab程序代编Python接单c++代写web系统设计
java·python·matlab
杨过姑父3 分钟前
ES6 简单练习笔记--变量申明
前端·笔记·es6
Sunny_lxm22 分钟前
<keep-alive> <component ></component> </keep-alive>缓存的组件实现组件,实现组件切换时每次都执行指定方法
前端·缓存·component·active
liuyunshengsir29 分钟前
Spring Boot 使用 Micrometer 集成 Prometheus 监控 Java 应用性能
java·spring boot·prometheus
路上阡陌38 分钟前
Java学习笔记(二十四)
java·笔记·学习
何中应1 小时前
Spring Boot中选择性加载Bean的几种方式
java·spring boot·后端
苏苏大大1 小时前
zookeeper
java·分布式·zookeeper·云原生
wclass-zhengge1 小时前
03垃圾回收篇(D3_垃圾收集器的选择及相关参数)
java·jvm
咔咔库奇1 小时前
【TypeScript】命名空间、模块、声明文件
前端·javascript·typescript
涛ing1 小时前
23. C语言 文件操作详解
java·linux·c语言·开发语言·c++·vscode·vim