Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
vue-alphanav
Advanced tools
Alphabetical Navigation Bar using flexbox made with Vue.
This bar can be displayed horizontaly or verticaly. Bind any action to the click event (@selected). It will adapt to the container you'll put it in.
It seems to me that this is a better navigation, then a default table/pagination, for an address directory, because you will never know on which page is the person you are looking for.
in order to install it in your project
npm install vue-alphanav (or npm i vue-alphanav)
then import the component where you need it
<template>
<alphanav direction="horizontal" @selected="YourMethod"/>
</template>
<script>
import Alphanav from "vue-alphanav"
export default {
components: {
alphanav
},
methods: {
YourMethod(selectedAlpha) {
console.log(selectedAlpha.value) //the letter you've clicked on
}
}
}
</script>
<style scoped>
</style>
Prop | Type | Required | Default | Description |
---|---|---|---|---|
direction | String | NO | horizontal | wether the nav list is displayed vertically or horizontally. Values are: horizontal/vertical |
showClear | Bolean | NO | false | Show a clear/reset link at the end of the navigation. |
clearLinkText | String | NO | 'clr' | Text of the reset/clear link |
Name | Params | Info |
---|---|---|
@selected | item: (selectedAlpha in our example) item.value | Triggered on any letter clicked |
@clear | none | Clears the selection in the alphanav |
This is the demo in the awesome Codesandbox
FAQs
Alphabetical Navigation bar displayed using flexbox.
We found that vue-alphanav demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.