Skip to content

DataTable

A DataTable element, in the context of a schema, represents a structured collection of data organized into rows and columns.

vue
<VsDataTable v-model="val" :colModel />
TitleEmail Дії

Нічого не знайдено

[]
js
// schema
{
  name: 'date',
  type: 'DataTable',
  label: 'Table',
  columns: [
    {name: 'title', type: 'text', label: 'Title'},  
    {name: 'email', type: 'text' , label: 'Email'}    
  ],  
  rules: ['required']
}