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

1.0.0 • Public • Published

Shapla Radio

A custom radio component that works like native radio component for Vue 3.

Table of contents

Installation

npm install --save @shapla/vue-radio

Usage

Styles

with Sass:

import '@shapla/vue-radio/src/index.scss';

with CSS:

import '@shapla/vue-radio/dist/style.css';

Javascript Instantiation

import ShaplaRadio from '@shapla/vue-radio';

export default {
  name: 'Hello',

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

Props

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

Package Sidebar

Install

npm i @shapla/vue-radio

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

19.1 kB

Total Files

14

Last publish

Collaborators

  • sayful