Skip to content

Dropdown 组件

基础用法

点击查看示例代码
vue
<template>
	<h-dropdown-v1 v-model="h_dropdown" :options="options"></h-dropdown-v1>
	<h-dropdown-v1 v-model="h_dropdown1" :options="options1"></h-dropdown-v1>
</template>

<script setup></script>
<template>
	<h-dropdown-v1 v-model="h_dropdown" :options="options"></h-dropdown-v1>
	<h-dropdown-v1 v-model="h_dropdown1" :options="options1"></h-dropdown-v1>
</template>

<script setup></script>

基础用法-多选

点击查看示例代码
vue
<template>
	<h-dropdowns-v1 v-model="h_dropdowns" :options="options"></h-dropdowns-v1>
	<h-dropdowns-v1 v-model="h_dropdowns1" :options="options1"></h-dropdowns-v1>
</template>

<script setup></script>
<template>
	<h-dropdowns-v1 v-model="h_dropdowns" :options="options"></h-dropdowns-v1>
	<h-dropdowns-v1 v-model="h_dropdowns1" :options="options1"></h-dropdowns-v1>
</template>

<script setup></script>