vuejs2.0如何获取dom元素自定义属性值

1.设置定义属性值  :data-value=".."

 

  • {{list.name}}

 

2.

 

 

    methods: {
          changeHeaderContent(index,name){
              console.log('cht',index)
              console.log('chaname',name)
}

上面是循环体中获取。

 

直接获取

 

data () {
    return {
      msg: 'Welcome to Your Vue.js App',
      name:'czj',
    }
  },

 

 

   gotoDetail:function(ev){
      console.log(ev);
    },

 

 

 

 

 

你可能感兴趣的:(Vue.js)