Skip to content

Commit 0f6f4b4

Browse files
committed
[Fix] Base Select
1 parent 362622c commit 0f6f4b4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/.vuepress/components/BaseSelect.vue

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<template>
22
<select
33
:value="modelValue"
4-
type="text"
54
class="shadow-sm rounded-md text-base transition-all disabled:cursor-not-allowed disabled:border-gray-300 disabled:text-gray-300 focus:border-primary focus:ring focus:ring-offset-0 focus:ring-primary focus:ring-opacity-50ß"
65
@input="$emit('update:modelValue', $event.target.value)"
76
>
@@ -19,7 +18,7 @@
1918

2019
<script>
2120
export default {
22-
name: 'BaseInput',
21+
name: 'BaseSelect',
2322
props: {
2423
modelValue: {
2524
default: undefined

0 commit comments

Comments
 (0)