andrewcourtice / vuetiful

Vuetiful is a component framework written on top of the Vue reactive library. It is primarily designed for creating business/administration applications where the displaying of data is paramount.
MIT License
488 stars 108 forks source link

datatable-column using v-for, with customize :formatter for each of cols #45

Open howard-wong opened 6 years ago

howard-wong commented 6 years ago
<div id="app">
   <datatable :source="d">
      <datatable-column v-for="column in columns" :id="column.id" :label="column.label" formatter="formatter_func"></datatable-column>
   </datatable>
</div>

Is it possible to customize dedicated formatter for each columns when using v-for, as the columns are various of type.

or, if the columnId can be drop to the formatter function.

Any advice? Thanks.