vue-image-cloud
v0.2.0
Published
A Vue 3 component for creating image cloud elements.
Readme
Vue Image Cloud
A Vue component for creating an image cloud for your Vue app.
[!NOTE] This package is currently undergoing additional testing, but the algorithm in place is currently effective for its main feature: distributing images within a bounded box.
Installation
npm
npm install vue-image-cloudyarn
yarn add vue-image-cloudInstructions
In any Vue file, use the following syntax
<script>
import { ImageCloud } from 'vue-image-cloud'
export default {
...,
components: {
ImageCloud
},
...
}
</script>
<template>
<ImageCloud />
</template>Vue 3 + Vite
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.
Recommended IDE Setup
- VS Code + Vue - Official (previously Volar) and disable Vetur
