https://github.com/suressk/sure-ui
A vue3 component library
https://github.com/suressk/sure-ui
component-library sure-ui ui-framework vue3
Last synced: 6 months ago
JSON representation
A vue3 component library
- Host: GitHub
- URL: https://github.com/suressk/sure-ui
- Owner: suressk
- License: mit
- Created: 2022-07-26T13:53:22.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2022-08-20T10:30:56.000Z (over 3 years ago)
- Last Synced: 2025-08-20T04:38:32.040Z (7 months ago)
- Topics: component-library, sure-ui, ui-framework, vue3
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/sure-ui
- Size: 801 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# sure-ui
It borrowed from [`Element Plus`](https://github.com/element-plus/element-plus)
## Install
```bash
npm i sure-ui
```
## Usage
Add `sure-ui` in your main entry file.
```ts
// main.ts
import { createApp } from 'vue'
import SureUI from 'sure-ui'
import 'sure-ui/dist/index.css'
createApp(App).use(SureUI).mount('#app')
```
But now, Just implemented the `Icon` component, it can be combined with icon components implemented in `sure-icons-vue`
```bash
npm i sure-icons-vue
```
use it in your custom component file
```vue
import { Wechat } from 'sure-icons-vue'
```
## License
[MIT](./LICENSE) License © 2022 [K. ( `suressk` )](https://github.com/suressk)