[Solved] Way to Remove q-table-container class in QTable
-
Is there a way to remove the
q-table-container
class ofQTable
when rendered on the page? I need to renderQTable
insideQCard
for some reason and seems that theq-table-container
is reduntant when displaying it inQCard
. -
Solved. What I’ve done is to set the
box-shadow
tonone
by declaring it on my .vue file like this:<style scoped> .q-table-container { box-shadow: none; } </style>