element-plus/packages/check-tag/index.ts
jeremywu 8f256b18f7
feat(tag): add new feature check-tag (#1696)
* feat(tag): add new feature check-tag

- Add new component `check-tag`

* feat(tag): - add check tag vetur support
2021-03-27 19:54:43 +08:00

12 lines
301 B
TypeScript

import { App } from 'vue'
import CheckTag from './src/index.vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
CheckTag.install = (app: App): void => {
app.component(CheckTag.name, CheckTag)
}
const _CheckTag: SFCWithInstall<typeof CheckTag> = CheckTag
export default _CheckTag