Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-20 19:09:21 +08:00

feat: 新增 Select V2 示例 (#43)

This commit is contained in:
ClariS 2023-01-17 10:34:18 +08:00 committed by GitHub
parent e43c93c8e9
commit 1161939616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,5 +12,7 @@ const { loading, options, selectedValue } = useFetchSelect({
<el-select :loading="loading" v-model="selectedValue">
<el-option v-for="(item, index) in options" v-bind="item" :key="index" />
</el-select>
<span class="m-x">Select V2 示例</span>
<el-select-v2 :loading="loading" v-model="selectedValue" :options="options" />
</div>
</template>