https://github.com/peterroe/vue-icon-cloud
Rendering an interactive icon cloud
https://github.com/peterroe/vue-icon-cloud
Last synced: 3 months ago
JSON representation
Rendering an interactive icon cloud
- Host: GitHub
- URL: https://github.com/peterroe/vue-icon-cloud
- Owner: peterroe
- License: mit
- Created: 2025-04-15T15:59:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-18T15:55:22.000Z (about 1 year ago)
- Last Synced: 2025-09-16T11:53:30.157Z (9 months ago)
- Language: Vue
- Homepage: https://peterroe.github.io/vue-icon-cloud/
- Size: 4.99 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vue Icon Cloud
A Vue component for displaying an icon cloud, supporting icons and SVGs.
## Install
```bash
$ pnpm install vue-icon-cloud
```
## Usage
Basic usage:
```vue
import IconCloud from 'vue-icon-cloud'
const slugs = ref([
"typescript", "javascript", "dart", "react", "flutter", "android", "html5", "css3",
"nodedotjs", "express", "nextdotjs", "prisma", "postgresql", "firebase", "nginx",
"vercel", "testinglibrary", "jest", "cypress", "docker", "git", "jira", "github",
"gitlab", "androidstudio", "sonarqube", "figma"
])
const images = computed(() => {
return slugs.value.map(
(slug) => `https://cdn.simpleicons.org/${slug}/${slug}`,
);
})
```
More Usage: visit [document](https://peterroe.github.io/vue-icon-cloud/guide/)