在我的输入组件内部,我有以下代码,以便使输入上的v模型作为组件工作:

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() {
    ...
  }
}

09-07 08:21