cyber-web-ui
Version:
spring-cyber前端ui框架
11 lines • 381 B
JavaScript
import RadioButton from "./RadioButton";
import RadioGroup from './RadioGroup';
import RadioWrapper from "./RadioWrapper";
export { RadioButton, RadioGroup, RadioWrapper };
export default {
install: function install(app) {
app.component(RadioGroup.name, RadioGroup);
app.component(RadioButton.name, RadioButton);
app.component(RadioWrapper.name, RadioWrapper);
}
};