PHP Classes

File: resources/js/components/ui/select/Select.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/select/Select.vue   Download  
File: resources/js/components/ui/select/Select.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 2 months ago
Size: 390 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { SelectRootEmits, SelectRootProps } from "reka-ui" import { SelectRoot, useForwardPropsEmits } from "reka-ui" const props = defineProps<SelectRootProps>() const emits = defineEmits<SelectRootEmits>() const forwarded = useForwardPropsEmits(props, emits) </script> <template> <SelectRoot v-bind="forwarded"> <slot /> </SelectRoot> </template>