This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@shapla/vue-radio-button

1.0.0 • Public • Published

Shapla Radio Button

A custom buttons group component that works like native radio.

Table of contents

Installation

npm install --save @shapla/vue-radio-button

Usage

Add the component:

import ShaplaRadioButton from '@shapla/vue-radio-button';

export default {
  name: 'Hello',

  components: {
    ShaplaRadioButton
  },
  data() {
    return {
      option: 'one',
      options: [
        {label: 'One', value: 'one'},
        {label: 'Two', value: 'two'},
        {label: 'Three', value: 'three'},
      ],
    }
  }
}
<shapla-radio-button v-for="_option in options" :key="_option.value" :value="_option.value" v-model="option">
  {{_option.label}}
</shapla-radio-button>

Props

Property Type Required Default Description
label String no `` Radio label
value String no `` Radio value

Package Sidebar

Install

npm i @shapla/vue-radio-button

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

20.1 kB

Total Files

12

Last publish

Collaborators

  • sayful