```json "@primeuix/themes": "1.2.3", "primevue": "4.3.9" ``` I was under the impression that the following would work ```vue <DataTable :value="[]" empty-message="Nothing found."> <Column field="name" header="Name"></Column> </DataTable> ``` But it seems that `pt` object is required for this (see [Stackblitz](https://stackblitz.com/edit/1ottnygk?file=src%2FApp.vue)). I am aware of a slot, but that also requires implementing the styling of something so basic as an empty state. Shouldn't there be a way to pass a simple string and let the DataTable handle the internals?