JSPM

  • Created
  • Published
  • Downloads 160
  • Score
    100M100P100Q88805F
  • License ISC

GITS Stepper Component

Package Exports

  • @gits-id/stepper
  • @gits-id/stepper/dist/stepper.mjs
  • @gits-id/stepper/dist/stepper.umd.js

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/stepper) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

GITS Steppers Component

Installation

npm

npm i @gits-id/stepper

yarn

yarn add @gits-id/stepper

pnpm

pnpm i @gits-id/stepper

Usage

<script setup lang="ts">
import Stepper from '@gits-id/stepper';

const items = Array.from({length: 5}, (v, k) => ({
  title: 'Title',
  subtitle: 'Subtitle',
  path: '/step/' + k,
}));
</script>

<template>
  <Stepper :items="items" />
</template>

Documentation

View full documentation here.

License

MIT