Blogger Information
Blog 37
fans 0
comment 1
visits 28111
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
uniapp动态添加类名
kong
Original
863 people have browsed it
  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>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!