element/packages/radio-button/index.js

9 lines
210 B
JavaScript
Raw Normal View History

2016-07-27 06:15:02 +00:00
const RadioButton = require('../radio/src/radio-button.vue');
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
2016-07-27 06:15:02 +00:00
RadioButton.install = function(Vue) {
Vue.component(RadioButton.name, RadioButton);
};
module.exports = RadioButton;