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
I'd like to be able to have a slot on the Table Component in order to fully customize a row from my form. Currently, you're only able to customize the columns from the rows by using the <column>-data slot.
It might fit right after the <template v-for="(row, index) in rows" :key="index"> on line 78 in the Table.Vue Component.
My particular use case : I want to add a form on each of the table to handle single-line form validation, and not wrap the whole table inside a form.
The same thing should be applied in V3.
Additional context
Desired result (plain HTML) :
The text was updated successfully, but these errors were encountered:
Description
I'd like to be able to have a slot on the Table Component in order to fully customize a row from my form. Currently, you're only able to customize the columns from the rows by using the
<column>-data
slot.It might fit right after the
<template v-for="(row, index) in rows" :key="index">
on line 78 in the Table.Vue Component.My particular use case : I want to add a form on each of the table to handle single-line form validation, and not wrap the whole table inside a form.
The same thing should be applied in V3.
Additional context
Desired result (plain HTML) :
The text was updated successfully, but these errors were encountered: