diff --git a/src/components/kit/KitShortList.vue b/src/components/kit/KitShortList.vue
new file mode 100644
index 0000000..930a93e
--- /dev/null
+++ b/src/components/kit/KitShortList.vue
@@ -0,0 +1,75 @@
+
+ base-input-container(:label="label")
+ .relative
+ base-input(type="text", v-model="value.label")
+ template(#icon)
+ .icon(@click="isExpand = !isExpand")
+ .menu(v-if="isExpand")
+ .item.p-2.cursor-pointer(
+ v-for="item in items",
+ :key="item.id",
+ @click="pickValue(item)"
+ )
+ .text {{item.label}}
+
+
+
+
+