Closed jerryfromearth closed 4 days ago
Use columns to make it work, like
<template>
<UTable :rows="data2" :columns="col"></UTable>
</template>
<script setup>
const data2 = [{ 'na.me': 'John' }];
const col = [{ key: 'na.me', label: 'Name' }];
</script>
Use columns to make it work, like
<template> <UTable :rows="data2" :columns="col"></UTable> </template> <script setup> const data2 = [{ 'na.me': 'John' }]; const col = [{ key: 'na.me', label: 'Name' }]; </script>
Thanks @MuhammadKhizar7 . Unfortunately it is the same result ("John" isn't displayed in the table cell): https://stackblitz.com/edit/nuxt-ui-vhvpqr?file=app.vue
This issue is stale because it has been open for 30 days with no activity.
Description
Hi, first of all thanks for the great library! I have a (maybe stupid) question:
The cell value (John) is not seen in the output. Is there any way to make sure the cell value can be seen? Thanks in advance.
Full playground: https://stackblitz.com/edit/nuxt-ui-vhvpqr?file=app.vue