JSPM

  • Created
  • Published
  • Downloads 25
  • Score
    100M100P100Q98845F
  • License ISC

GITS Navigation Drawer Component

Package Exports

  • @gits-id/nav-drawer
  • @gits-id/nav-drawer/src/index.ts

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gits-id/nav-drawer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

NavDrawer

Navigation Drawer Component.

Installation

Install with your own prefered package manager:

# with NPM
npm i @gits-id/nav-drawer

# Or with Yarn
yarn add @gits-id/nav-drawer

# Or with PNPM
pnpm i @gits-id/nav-drawer

Usage

<script setup lang="ts">
import {ref} from 'vue';
import VNavDrawer from '@gits-id/nav-drawer';
import '@gits-id/nav-drawer/dist/style.css';

const isOpen = ref(true);
</script>

<template>
  <VNavDrawer v-model="isOpen">
    <p>Hello World</p>
  </VNavDrawer>
</template>

Documentation

View VNavDrawer documentation here.

License

MIT