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/stepperyarn
yarn add @gits-id/stepperpnpm
pnpm i @gits-id/stepperUsage
<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