uniapp动态添加类名

编辑: admin 分类: 电脑知识 发布时间: 2023-06-14 来源:互联网
  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>
【文章转自中东服务器 http://www.558idc.com/dibai.html欢迎留下您的宝贵建议】