index.js 203 B

123456789
  1. import RadioButton from '../radio/src/radio-button.vue';
  2. /* istanbul ignore next */
  3. RadioButton.install = function(Vue) {
  4. Vue.component(RadioButton.name, RadioButton);
  5. };
  6. export default RadioButton;