
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
@egjs/vue-flicking
Advanced tools
A module used to implement flicking interactions. With this module, you can make flicking gestures, which are ways to navigate left and right to move between panels arranged side by side.
Vue wrapper of @egjs/flicking
Demo / Documentation / Other components
npm install --save @egjs/vue-flicking
camelCased event names became kebab-case
moveEnd => move-endappend(), remove(), ...import VueFlicking from "@egjs/vue-flicking";
Vue.use(VueFlicking);
import { Flicking } from "@egjs/vue-flicking";
export default {
components: {
Flicking: Flicking,
}
}
<template>
<flicking
:options="{ gap: 10, moveType='freeScroll' }"
:tag="'div'"
:plugins="plugins"
@need-panel="e => {
// ADD PANELS
}"
@move-end="e => {
// HANDLE INDEX CHANGE
}"
>
<div>CONTENTS OF PANEL 0</div>
<div>CONTENTS OF PANEL 1</div>
<div>CONTENTS OF PANEL 2</div>
</flicking>
</template>
<script>
import { Component, Vue } from "vue-property-decorator";
import { Fade, AutoPlay } from "@egjs/flicking-plugins";
@Component({})
export default class DemoClass extends Vue {
plugins = [new Fade(), new AutoPlay(2000, "NEXT")];
}
</script>
Check GUIDE_SSR.md
You can use all plugins just like native @egjs/flicking.
Check @egjs/flicking-plugins for readymade effects we're providing.
See demo/ for more implementation examples.
See CONTRIBUTING.md
Please file an Issue with label "Vue".
@egjs/flicking is released under the MIT license.
FAQs
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
We found that @egjs/vue-flicking demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 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.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.