将Vuex与对象数组一起使用时,v-for不会按预期更新
watch方法对映射的Getter更改做出反应,但不更新v-for元素。
有没有办法强制退出看守功能?
答案 0 :(得分:0)
尝试根据监视变量创建一个计算属性并循环遍历它。
答案 1 :(得分:0)
尝试使用 <dropzone [message]="'Click or drag Synopsis PDF here to upload - Max Allowed Size (2MB) '" id="dropzone"></dropzone>
或import numpy as np
a = np.array([['a', 'b'], ['c', 'd'],\
['e', 't'], ['a', 'b'], ['a', 'b']])
[['a' 'b']
['c' 'd']
['e' 't']
['a' 'b']
['a' 'b']]
b = np.array([['a','b'],['e','t'],['r','t']])
[['a' 'b']
['e' 't']
['r' 't']]
shared_rows=0
for row in b:
temp=a==row
shared_rows+=sum(np.sum(temp, axis=1)==a.shape[1])
print(shared_rows)
4
,如以下警告所示:https://vuejs.org/v2/guide/list.html#Caveats