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
<div v-for="a in 2" :key="a"> <div v-for="b in 3" :key="b"> <span>{{func(a.b).field1}}</span> <span>{{func(a.b).field2}}</span> <span>{{func(a.b).field3}}</span> <span>{{func(a.b).field4}}</span> </div> </div>
<div v-for="a in 2" :key="a"> <div v-for="b in 3" :key="b"> {{const tmp = func(a.b) //such a way like this}} <span>{{tmp.field1}}</span> <span>{{tmp.field2}}</span> <span>{{tmp.field3}}</span> </div> </div>
The text was updated successfully, but these errors were encountered:
Prior art: vuejs/vue#6913
This should go through an RFC process. It would probably be useful to have in-template computed properties as well. I created this for vue 2 https://github.com/posva/vue-local-scope
Sorry, something went wrong.
now i get a hack very useful like :justAHack="(SUDUKO = gene([S, I]), '')"
:justAHack="(SUDUKO = gene([S, I]), '')"
This is something that we'd like to find a good solution for but it should probably go through the RFC process instead of being discussed here.
No branches or pull requests
What problem does this feature solve?
What does the proposed API look like?
The text was updated successfully, but these errors were encountered: