gpt4 book ai didi

typescript - Vue.js - typescript : Expected method shorthand in object literal

转载 作者:行者123 更新时间:2023-12-03 06:43:16 25 4
gpt4 key购买 nike

在我的输入组件中,我有这个代码是为了使输入上的 v-model 作为一个组件工作:

computed: {
inputListeners: function() {
const vm = this;
return Object.assign({},
this.$listeners,
{
input: (event: any) => {
vm.$emit('input', event.target.value);
},
},
);
},

这是官方示例:
https://vuejs.org/v2/guide/components-custom-events.html#Binding-Native-Events-to-Components

现在 typescript 给我这个警告:
WARNING in /Users/../components/InputText.vue
Expected method shorthand in object literal ('{inputListeners() {...}}').
> inputListeners: function() {

你知道代码解决方案吗?

最佳答案

使用方法简写格式:inputListeners() { ... }

computed: {
inputListeners() {
...
}
}

关于typescript - Vue.js - typescript : Expected method shorthand in object literal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54241453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com