请问vue中怎么调用JS函数?新手求救

一个HTML文件中
........
<img :src="todo.img" style="width: 300px;height: 300px;" class="img-thumbnail">
<script type="text/javascript">

var app4 = new Vue({
....
})
//自定义JS函数在VUE代码主体外
function getfristimg(url){
    return url
}
......

我想在图片地址src的地方,添加一个JS自定义的函数getfristimg
<img :src="getfristimg(todo.img)" style="width: 300px;height: 300px;" class="img-thumbnail">
运行时提示找不到这个getfristimg自定义函数
请教下怎么写?

阅读 6.3k
2 个回答

在methods里引用一下

methods:{
    getfristimg: getfristimg
}

0

export function getfristimg(url){
   return url
}

1
import { getfristimg } from 'xxx'

2

methods:{
    getfristimg: getfristimg
}

3
<img :src="getfristimg(todo.img)" class="img-thumbnail">

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏