码迷,mamicode.com
首页 > 其他好文 > 详细

Vue 项目记录

时间:2020-05-24 00:45:25      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:样式   this   highlight   method   key   avl   default   eth   nta   

1.  列表 样式切换

<template>
  <div class="homeContainer">
    <ul class="headList">
       <li class="item" v-for="item in navList" :key="item.id" :class="{‘active‘: curSort === item.id}" @click="navHandle(item.id)">{{item.name}}</li>
     </ul>
  </div>
</template>

<script>
export default {
  name: ‘homePage‘,
  data () {
    return {
      curSort: 1,
      navList: [
        { id: 1, name: ‘首页‘, active: ‘true‘ },
        { id: 2, name: ‘关于我们‘ },
        { id: 3, name: ‘产品‘ },
        { id: 4, name: ‘资讯‘ },
        { id: 5, name: ‘合作伙伴‘ },
        { id: 6, name: ‘加入我们‘ }
      ]
    }
  },

  methods: {
    navHandle (id) {
      this.curSort = id
    }
  }
}
</script>

 

  

Vue 项目记录

标签:样式   this   highlight   method   key   avl   default   eth   nta   

原文地址:https://www.cnblogs.com/linsxl/p/12945032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!