@shapla/vue-radio

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

Usage no npm install needed!

<script type="module">
  import shaplaVueRadio from 'https://cdn.skypack.dev/@shapla/vue-radio';
</script>

README

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