view.js 264 B

123456789
  1. import { h } from 'vue'
  2. import { formInputViewProps } from '../../form-input-props'
  3. import SelectView from '../select/view'
  4. export default {
  5. props: formInputViewProps,
  6. setup (props) {
  7. return () => h(SelectView, { ...props, multiple: true })
  8. }
  9. }