javascript - 我在vue中的v-for里绑定事件报错?
过去多啦不再A梦
过去多啦不再A梦 2017-05-19 10:38:42
0
2
687

我在v-for里面循环生成route-link,想给他绑定一个事件,结果报错说事件未定义,下面是我的代码

    <ul class="card-list">
      <li v-for="(url, index) in urls">
        <router-link class="linkTo" :to="'/Page' + (index + 1)">
          <img @click="total(index)" class="cardWidth" :src="url" alt="">
        </router-link>
      </li>
    </ul>
    
    method: {
      total: function (index) {
        console.log(index)
      }
    }
    
    

报错信息:

Property or method "total" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option. 
Uncaught TypeError: _vm.total is not a function
过去多啦不再A梦
过去多啦不再A梦

全部回复(2)
PHPzhong

是 methods

http://vuejs.org/v2/api/#methods

我想大声告诉你

没有定义total这个方法,楼下正确

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板