1 2 3 4 5 6 7 8 9 10 11
<script> import { h } from 'vue'; import Multiquicksearch from '@/vue/components/Multiquicksearch.vue'; export default { props: ['name', 'value', 'searchtype', 'autocomplete', 'addlabel'], setup(props) { return () => h(Multiquicksearch, props); }, }; </script>