view.js 213 B

123456789
  1. import { formInputViewProps } from '../../form-input-props'
  2. export default {
  3. props: formInputViewProps,
  4. setup (props) {
  5. return () => (
  6. <span>{props.otherValue || props.modelValue}</span>
  7. )
  8. }
  9. }