Socket
Socket
Sign inDemoInstall

v-dropdown

Package Overview
Dependencies
21
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    v-dropdown

A dropdown layer container component for vue3


Version published
Weekly downloads
1.6K
decreased by-26.3%
Maintainers
1
Install size
12.2 MB
Created
Weekly downloads
 

Changelog

Source

3.0.0 (2023-09-16)

Bug Fixes

  • Update .d.ts document

Readme

Source

v-dropdown · CircleCI codecov npm version npm downloads JavaScript Style Guide

A dropdown container for Vue3

If you are using vue 2.x version, please use v-dropdown 2.x version instead

Documentation and Examples

Documentation and examples please visit below sites

Repositories using v-dropdown

Installation

https://nodei.co/npm/v-dropdown.png?downloads=true&downloadRank=true&stars=true

# npm
npm i v-dropdown
# yarn
yarn add v-dropdown
# pnpm
pnpm add v-dropdown

Usage

<template>
  <Dropdown @visible-change="change">
    <!-- dropdown trigger -->
    <template #trigger>
      <button
        type="button"
        class="btn"
      >
        click me
      </button>
    </template>

    <div>some contents</div>
  </Dropdown>
</template>

<script setup>
import Dropdown from 'v-dropdown'

function change (val) {
  console.log(val)
}
</script>

License

license

Keywords

FAQs

Last updated on 16 Sep 2023

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