"El Popover" is a lightweight Vue3 component library based on Element Plus. It provides Popover and Tooltip components with functionality identical to Element Plus, but without requiring the full Element Plus library. This package can also serve as a learning resource for understanding Element Plus Popover components.
- 🎯 Lightweight: Contains only core Popover component functionality
- 💪 Complete: Maintains feature parity with Element Plus Popover
- 🔗 Zero learning curve: API identical to Element Plus
- 🚀 Smaller bundle size: No need to import full Element Plus
# Using npm
npm install @hekeh/el-popover
# Using yarn
yarn add @hekeh/el-popover
# Using pnpm
pnpm add @hekeh/el-popover
Import the Popover component:
import { Popover } from '@hekeh/el-popover';
The API is identical to Element Plus's Popover component. For complete usage details, please refer to the Element Plus Popover documentation.
Import the Tooltip component:
import { Tooltip } from '@hekeh/el-popover';
The API is identical to Element Plus's Tooltip component. For complete usage details, please refer to the Element Plus Tooltip documentation.
MIT