[vue3.2] computed 方法,提示提示报错:This expression is not callable.Type ‘String‘ has no call signatures.ts

vue3.2 computed 方法,提示提示报错:This expression is not callable.Type ‘String’ has no call signatures.ts
(property) getIcon: string This expression is not callable.Type ‘String’ has no call signatures.ts(

problem

<script setup lang="ts">
import { computed } from 'vue';
const getIcon = computed((path) => 'https://cdn.xxxx/example/' + path + '.png')
</script>
<template>
    <!-- ts提示 This expression is not callable.Type 'String' has no call signatures.ts-->
    <img :src="getIcon(item1.icon)" mode="widthFix"></img>
</template>

reason

getIcon 定义这个computed方法返回的是属性,但是实际调用方式却是方法

solution

// before 
const getIcon = computed((path) => 'https://cdn.xxxx/example/' + path + '.png')
// after 
const getIcon = computed(()=>{
    return (path:string) => 'https://cdn.xxxx/example/' + path + '.png'
})
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值