1.3.3 • Published 1 month ago

@shapla/vue-components v1.3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Shapla Vue Components

A collection of reusable components (using Vue 3 Composition API) for Vue 3.

For Vue 2, Visit Shapla Vue Components

Demo & Documentation

Table of contents

Installation

Install using npm package manager

npm i @shapla/vue-components

or using yarn package manager

yarn add @shapla/vue-components

Usage

Here we export all components script as ES module and all style as SCSS mixins. So you need to import SCSS mixin to load style of component and also need to import ES module and register as vue component. For detail documentation, please visit Demo & Documentation page.

For example, to use button and progress bar components:

Styles (SCSS)

// Add the following line at top of your scss file
@use "@shapla/vue-components/src/index.scss" as shapla;

@include shapla.button;
@include shapla.progress;
// Include other mixins as your requirement

Javascript Instantiation

import { ShaplaButton, ShaplaProgress } from "@shapla/vue-components";

export default {
  name: "Hello",

  components: {
    ShaplaButton,
    ShaplaProgress,
  },
};
<shapla-progress
  :value="1"
  :max="10"
  :striped="true"
  :animated="true"
  size="small"
  theme="primary"
/>
<shapla-button @click="handleClick">button text</shapla-button>

List of Components

  • Button
  • Checkbox
  • Chip
  • Columns/Grid System
  • Confirm Dialog
  • Cross/Delete Icon
  • Dashboard
  • Dropdown
  • File Uploader
  • Icon Container
  • Image Container
  • Text Field
  • Modal/Popup
  • Notification
  • Progress Bar
  • Radio
  • Radio Button
  • Search Form
  • Select
  • Sidenav
  • Slider
  • Spinner
  • Star Rating
  • Switch
  • Data Table
  • Tabs
  • Toggles
1.3.3

1 month ago

1.3.2

2 months ago

1.3.1

2 months ago

1.3.0

1 year ago

1.2.9

1 year ago

1.2.8

1 year ago

1.2.7

1 year ago

1.2.6

1 year ago

1.2.5

1 year ago

1.2.4

1 year ago

1.2.3

2 years ago

1.2.0

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.0

3 years ago

1.0.0

3 years ago