import BasicRate from './index' import { formInputViewProps } from '../../form-input-props' import { computed } from 'vue' export default { props: formInputViewProps, inheritAttrs: false, setup (props) { const viewConfig = computed(() => { return { ...props.config, showScore: props.config.showScore ?? true } }) return () => } }