el-loading
Installation
SKILL.md
Loading Component
Loading component shows animation while loading data via directive or service.
When to Use
- Data loading states
- Async operation feedback
- Form submission
- Page transitions
Directive Usage
<template>
<el-table v-loading="loading" :data="tableData">
<el-table-column prop="name" label="Name" />
</el-table>
</template>