I have a project that utilizes Vuetify and I need to display a table of "customer" information. Everything was functioning properly with Vuetify 1.5, but now I am required to upgrade to the latest version, which is 2.0.
The issue I'm encountering is that although the program recognizes my data, none of it appears in the table. The correct number of rows are generated based on my records, and Vue DevTools confirms that the data is present, but the rendered HTML only displays empty elements. Below are screenshots illustrating the problem:
https://i.sstatic.net/7xVNg.png https://i.sstatic.net/ppWNB.png https://i.sstatic.net/Qtmwu.png
You can find the project at: https://github.com/apalmesano2/assign3_frontend.git
Here is an excerpt from my Vue template for the list of customers:
CustomerList.vue
<template>
<main>
<!-- Your template code goes here -->
</main>
</template>
If you'd like to dive into the script section as well, please refer to the original post for the complete content.
It seems that there might be an issue with how I am implementing v-data-table and passing props in the template. Even manually entered text within the tags fails to render in the table.
To view the page showcasing the screenshots after cloning the project, kindly log in using the following credentials:
Username: instructor
Password: instructor1a
Any assistance provided will be greatly appreciated!