选择下拉项时Vue v-autocomplete不删除用户键入的文本

时间:2019-04-17 22:15:16

标签: javascript html vue.js autocomplete v-autocomplete

我下面有这个vue v-autocomplete

试图确定这是否是预期的行为?找不到其他可以正常工作的例子。

当用户开始输入文本时,自动完成下拉列表将显示所有下拉项目,用户从列表中选择一个项目,但不会删除用户输入的部分文本。文档页面上的示例。

此外,一旦用户从下拉列表中选择了项目,则如果用户在远离下拉列表的位置单击屏幕。它将关闭下拉列表(预期),但现在它从字段中删除了键入的文本

FUNCTION 1 was excecuted  1  time.
---------------------------------------------------------------------------
UnboundLocalError                         Traceback (most recent call last)
<ipython-input-148-d67aeefa671e> in <module>()
      1 test = CLASS("Fred")
      2 test.FUNCTION1()
----> 3 test.FUNCTION2()
      4 test.FUNCTION2()

<ipython-input-147-6a6d7adb1af9> in FUNCTION2(self)
     15 
     16     def FUNCTION2(self):
---> 17         counting_excution_after_FUNCTION += 1
     18         print("FUNCTION 2 was excecuted ", self.counting_excution_after_FUNCTION, " time after FUNCTION.")

UnboundLocalError: local variable 'counting_excution_after_FUNCTION' referenced before assignment

这就是我所看到的。用户开始输入A

enter image description here

然后用户单击“ A&B”,然后将“ A&B”填充到该字段中,但不会删除首字母a!

enter image description here

1 个答案:

答案 0 :(得分:0)

查看文档后,这是预期的行为。