I have a task that requires me to include information within a "card", displayed as shown in the example image https://i.sstatic.net/yz5Y7.png
Here is the HTML snippet I have:
<div id="app">
<el-card shadow="always">
Dashboard
</el-card>
<el-card class="box-card">
<div slot="header">
<h2>Card name</h2>
<p>Challenge</p>
</div>
<div class="text item">
</div>
</el-card>
</div>
Can anyone assist me in arranging the "approved posts", "influences", "likes", and "comments" similar to the picture? I'm not very experienced, but I believe using a grid or table display could work. Can someone provide an example or demonstrate how it could be implemented in my case? Thank you! I am working with Vue.js and Element UI library.