欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 健康 > 养生 > 【Vue】点击侧边导航栏,右侧main对应显示

【Vue】点击侧边导航栏,右侧main对应显示

2025/1/19 22:35:21 来源:https://blog.csdn.net/qq_32792547/article/details/145149748  浏览:    关键词:【Vue】点击侧边导航栏,右侧main对应显示

需求:点击侧边导航栏,右侧main对应显示

通过v-if或v-show等指令来控制不同内容的显示隐藏来实现

注意:

使用v-if时候进行导航栏切换,右侧显示区域可能会出现样式错乱;使用v-show则不会出现此错误

<template><!-- Aside和Main区域 --><el-container><el-aside><el-menu :default-active="asideActiveIndex" @select="handleAsideSelect"><el-menu-item index="basic-info">基本信息</el-menu-item><el-menu-item index="tested-system">被测系统</el-menu-item></el-menu></el-aside><el-main><!-- 通过v-if来控制不同内容的显示 --><div v-if="currentAside === 'basic-info'">basic-info</div><div v-if="currentAside === 'tested-system'">tested-system</div></el-main></el-container>
</template><script>
export default {data() {return {asideActiveIndex: 'basic-info',currentAside: 'basic-info',};},methods: {handleAsideSelect(key, keyPath) {this.currentAside = key;console.log("key", key);if (key === '/basic-info') {console.log("切换到基本信息选项卡");} else if (key === '/tested-system') {console.log("切换到样品清单选项卡");}},}
};
</script>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com