New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

vauland

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vauland

Unstyled drawer component for Vue.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

vauland

This is implementation of vaul-vue drawer component, including all the necessary Reka UI components in the bundle.

Installation

pnpm add vauland
npm install vauland
yarn add vauland

Usage

<script setup lang="ts">
import {
  DrawerContent,
  DrawerOverlay,
  DrawerPortal,
  DrawerRoot,
  DrawerTrigger,
} from 'vauland';
</script>

<template>
  <DrawerRoot>
    <DrawerTrigger> Open </DrawerTrigger>
    <DrawerPortal>
      <DrawerOverlay />
      <DrawerContent>
        <p>Content</p>
      </DrawerContent>
    </DrawerPortal>
  </DrawerRoot>
</template>

Credits

All credits go to these open-source works and resources

  • Major credits go to Emil Kowalski for the original Vaul library.
  • Reka UI for the Dialog primitive used under the hood.
  • All the contributors of the Vaul Vue library.

Keywords

vue

FAQs

Package last updated on 01 Sep 2025

Did you know?

Socket

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