view.jsx 309 B

123456789
  1. import { h } from 'vue'
  2. import { useFormView, formInputViewProps } from '@cip/components/helper/form-input'
  3. export default {
  4. props: formInputViewProps,
  5. setup (props, context) {
  6. const { inputStyle } = useFormView(props)
  7. return () => h('span', { style: inputStyle.value }, [props.modelValue])
  8. }
  9. }