博客列表 >uniapp动态添加类名

uniapp动态添加类名

kong
kong原创
2023年03月10日 13:35:38870浏览
  1. <template>
  2. <view>
  3. <view
  4. v-for="(item,index) in menus"
  5. class="menu"
  6. :class="[activeIndex==index?'menuActive':'']"
  7. @click="menuClick"
  8. :id="index">
  9. {{item}}
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. var _self;
  15. export default{
  16. data(){
  17. return{
  18. activeIndex:0,
  19. menus:[
  20. '新闻',
  21. '汽车',
  22. '读书'
  23. ]
  24. }
  25. },
  26. onLoad() {
  27. _self=this;
  28. },
  29. methods:{
  30. menuClick:function(e){
  31. var aId=e.target.id;
  32. _self.activeIndex=aId;
  33. }
  34. }
  35. }
  36. </script>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议