You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However there seems to be some disconnect (missing anonymous component?) between body slot and QTr and props.row are not accessible.
Reason why I find this useful is that body description in python enables inserting custom vue components, and the only way I see to do it now is rewriting whole table with custom component as new combined component, which is a lot of duplicated boilerplate code.
The text was updated successfully, but these errors were encountered:
Currently there is - as far as I know - no way to use scoped slots without writing template strings. This problem is discussed in #3148 and addressed in PR #3261. Hopefully there will be a solution in the near future.
Since passing props like .props(':props=props') isn't expected to work, I'll close this issue.
Description
This is on the same topic as #167 and #501. Here is the code to expand the idea (tested on nicegui 2.5.0):
And this works as expected. Props are passed down to
q-td
and is visible from vue debugging on browser:But this does not work when describing with body slot with python:
However there seems to be some disconnect (missing anonymous component?) between body slot and
QTr
andprops.row
are not accessible.Reason why I find this useful is that body description in python enables inserting custom vue components, and the only way I see to do it now is rewriting whole table with custom component as new combined component, which is a lot of duplicated boilerplate code.
The text was updated successfully, but these errors were encountered: