We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the vueGridItems like this...
vueGridItems
import { computed } from 'vue-demi' ... const vueGridItems = computed(() => {return [{i:1}, {i:2}] })
and template
<grid-item v-for="item in vueGridItems" v-bind="item" > <WmqGridItem ref="itemRefs" :uk="childrenWmqGridItem[item.i].uk" :itemConfig="childrenWmqGridItem[item.i]" :itemDataContext="childrenDataContext[item.i]" :itemProps="childrenWmqGridItem[item.i].props" :itemOptions="childrenWmqGridItem[item.i].options" :schemaData="childrenWmqGridItem[item.i].itemData" /> </grid-item>
item.i can not predict prop i, item type is
item.i
i
item
true | { i: number; }[] | ReactiveEffect<{ i: number; }[]>
true make editor recognize prop i fail, I have no idea where predict true
true
vue: 3.3 vue-demi: 0.14.5 editor: vscode and Vue Language Features (Volar) v1.8.8
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the
vueGridItems
like this...and template
item.i
can not predict propi
,item
type istrue | { i: number; }[] | ReactiveEffect<{ i: number; }[]>
true
make editor recognize propi
fail, I have no idea where predicttrue
vue: 3.3
vue-demi: 0.14.5
editor: vscode and Vue Language Features (Volar) v1.8.8
The text was updated successfully, but these errors were encountered: