I can't get v-for to work. is there any way to dynamically draw a GridColumn with a columnList?
Here is the code that I failed with
<Grid :data-source="tableData"
:selectable="'multiple cell'">
<GridColumn v-for="column in columns" :key="column.field" :field="column.field" :title="column.title" />
</Grid>
<Grid :data-source="tableData"
:selectable="'multiple cell'">
<template v-for="column in columns" :key="column.field">
<GridColumn :field="column.field" :title="column.title" />
</template>
</Grid>