![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@salamander.be/vue-image-previewer
Advanced tools
A VueJs previewer for images that are not included in the component.
The component will create a gallery of a given image set. When clicked on an image outside the component, the gallery will open at the given image.
npm install @salamander.be/vue-image-previewer
<template>
<div id="app">
<image-previewer :images="images" targetClass="viewable-img"></image-previewer>
<!-- Content that is not inside the image-previewer component -->
<div>
<img style="width: 300px; height: 300px; object-fit: cover; margin: 15px;" v-for="(image, key) in images" :key="key" :src="image" class="viewable-img">
</div>
</div>
</template>
<script>
import ImagePreviewer from '@salamander.be/vue-image-previewer'
import '@salamander.be/vue-image-previewer/dist/vue-image-previewer.css'
export default {
name: 'app',
components: {
ImagePreviewer
},
data() {
return {
// Example: A list of random images
images: [
'https://picsum.photos/500/600',
'https://picsum.photos/700/500',
'https://picsum.photos/800/600',
'https://picsum.photos/800/700'
'https://picsum.photos/900/500',
'https://picsum.photos/800/900',
'https://picsum.photos/700/900',
'https://picsum.photos/500/900',
]
}
}
}
</script>
images: ['/image-1.png', '/image-2.png'] // the items shown on the board
tergetClass: 'viewable-img' // The placeholder of the create option
FAQs
A VueJs previewer for images that are not included in the component.
We found that @salamander.be/vue-image-previewer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.