Socket
Socket
Sign inDemoInstall

vue-grid-swiper

Package Overview
Dependencies
11
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-grid-swiper

A swipe carousel for VueJS - Option for full page swiper/carousel


Version published
Maintainers
1
Install size
11.4 MB
Created

Readme

Source

vue-grid-swiper

A swipe carousel for VueJS - Option for full page swiper/carousel

##installation ####run in your cli:

npm i vue-grid-swiper

####install the package in your main.js

import {VueGridSwiper} from "vue-grid-swiper";
Vue.use(VueGridSwiper);

####add this to your javascript imports in your component file

import {GridSwiper} from 'vue-grid-swiper';

##example

<template>
    <grid-swiper width="100vw" height="100vh">
        <template #0.0>
            <img src="https://picsum.photos/1920/1080?1" width="100%" height="100%"/>
        </template>
        <template #0.1>
            <img src="https://picsum.photos/1920/1080?2" width="100%" height="100%"/>
        </template>
        <template #1.0>
            <img src="https://picsum.photos/1920/1080?3" width="100%" height="100%"/>
        </template>
        <template #1.1>
            <img src="https://picsum.photos/1920/1080?4" width="100%" height="100%"/>
        </template>
    </grid-swiper>
</template>

<script>
import {GridSwiper} from 'vue-grid-swiper';

export default {
    name: 'Example',
    components: {GridSwiper},
};
</script>

Keywords

FAQs

Last updated on 18 Mar 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc