FWQ
Vue/UniApp 选项卡选中时如何添加边框和背景色?
/中选中时有边框和背景色的选项卡如何实现 原帖中提供的代码不能实现选中时有边框和背景色的效果。下面是用 html 实现这种效果的代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <div class="tabs"> <div class="tab active">日</div> <div class="tab">周</div> <div class="tab">月</div> <div…