mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 11:17:46 +08:00
0456c790db
* feat: add mention component * fix: build error * fix: build error * feat: delete as a whole * fix: update docs * fix: update global.d.ts * fix: update * fix: update code * fix: update code * fix: update code * fix: rename * fix: update code * fix: upload code * fix: update code * fix: fixed cursor position abnormality * fix: update code * fix: docs add avatar * fix: tooltip position is wrong when placing on top * feat: add overview icon * fix: overview icon color
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
import { withInstall } from '@element-plus/utils'
|
|
import Mention from './src/mention.vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
export const ElMention: SFCWithInstall<typeof Mention> = withInstall(Mention)
|
|
export default ElMention
|
|
|
|
export * from './src/mention'
|