I also tried the example from the Vuetify docs in Dashboard 2 ui-template and for me the table column alignment works fine.
Test Flow :
[{"id":"918909f9b7d815c0","type":"ui-template","z":"54efb553244c241f","group":"920b4bf313db45d0","page":"","ui":"","name":"","order":1,"width":0,"height":0,"head":"","format":"<template>\n <v-data-table :headers=\"headers\" :items=\"plants\" density=\"compact\" item-key=\"name\"></v-data-table>\n</template>\n\n<script>\nexport default {\n data() {\n \n return {\n headers: [\n { title: 'Plant', align: 'start', sortable: false, key: 'name' },\n { title: 'Light', align: 'start', key: 'light' },\n { title: 'Height', align: 'end', key: 'height' },\n { title: 'Pet Friendly', align: 'end', key: 'petFriendly' },\n { title: 'Price ($)', align: 'end', key: 'price' },\n ],\n plants: [\n {\n name: 'Fern',\n light: 'Low',\n height: '20cm',\n petFriendly: 'Yes',\n price: 20,\n },\n {\n name: 'Snake Plant',\n light: 'Low',\n height: '50cm',\n petFriendly: 'No',\n price: 35,\n },\n {\n name: 'Monstera',\n light: 'Medium',\n height: '60cm',\n petFriendly: 'No',\n price: 50,\n },\n {\n name: 'Pothos',\n light: 'Low to medium',\n height: '40cm',\n petFriendly: 'Yes',\n price: 25,\n },\n {\n name: 'ZZ Plant',\n light: 'Low to medium',\n height: '90cm',\n petFriendly: 'Yes',\n price: 30,\n },\n {\n name: 'Spider Plant',\n light: 'Bright, indirect',\n height: '30cm',\n petFriendly: 'Yes',\n price: 15,\n },\n {\n name: 'Air Plant',\n light: 'Bright, indirect',\n height: '15cm',\n petFriendly: 'Yes',\n price: 10,\n },\n {\n name: 'Peperomia',\n light: 'Bright, indirect',\n height: '25cm',\n petFriendly: 'Yes',\n price: 20,\n },\n {\n name: 'Aloe Vera',\n light: 'Bright, direct',\n height: '30cm',\n petFriendly: 'Yes',\n price: 15,\n },\n {\n name: 'Jade Plant',\n light: 'Bright, direct',\n height: '40cm',\n petFriendly: 'Yes',\n price: 25,\n },\n ],\n \n \n }\n },\n watch: {\n // watch for any changes of \"msg\"\n msg: function () {\n \n }\n },\n \n \n \n }\n</script>","storeOutMessages":true,"passthru":true,"resendOnRefresh":true,"templateScope":"local","className":"","x":420,"y":3880,"wires":[[]]},{"id":"920b4bf313db45d0","type":"ui-group","name":"Group 1","page":"4491a49c6b49a6b3","width":6,"height":1,"order":1,"showTitle":true,"className":"","visible":true,"disabled":false,"groupType":"default"},{"id":"4491a49c6b49a6b3","type":"ui-page","name":"Page 1","ui":"dca6aa0ee8b1020c","path":"/page1","icon":"home","layout":"grid","theme":"2ce3f65dd0354f9c","breakpoints":[{"name":"Default","px":0,"cols":3},{"name":"Tablet","px":576,"cols":6},{"name":"Small Desktop","px":768,"cols":9},{"name":"Desktop","px":1024,"cols":12}],"order":1,"className":"","visible":"true","disabled":"false"},{"id":"dca6aa0ee8b1020c","type":"ui-base","name":"My Dashboard","path":"/dashboard","appIcon":"","includeClientData":true,"acceptsClientConfig":["ui-notification","ui-control"],"showPathInSidebar":false,"headerContent":"page","navigationStyle":"default","titleBarStyle":"default","showReconnectNotification":true,"notificationDisplayTime":1,"showDisconnectNotification":true},{"id":"2ce3f65dd0354f9c","type":"ui-theme","name":"Default Theme","colors":{"surface":"#ffffff","primary":"#0094CE","bgPage":"#eeeeee","groupBg":"#ffffff","groupOutline":"#cccccc"},"sizes":{"density":"default","pagePadding":"12px","groupGap":"12px","groupBorderRadius":"4px","widgetGap":"12px"}}]
Can you share your flow with some sample data to see if there are any differences ?