| 123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="search--modules">
- <div class="form--cont--filter">
- <v-select
- v-model="filter"
- :items="filderArr"
- variant="outlined"
- class="custom-select"
- >
- </v-select>
- </div>
- <div class="form--cont--text">
- <v-text-field
- class="custom-input mini"
- style="width: 100%"
- placeholder="검색어를 입력하세요"
- ></v-text-field>
- </div>
- <v-btn class="custom-btn btn-blue mini sch--btn">검색</v-btn>
- </div>
- </template>
- <script setup>
- const filter = ref("");
- const filderArr = ref([
- { title: "전체", value: "" },
- { title: "이름", value: "name" },
- { title: "아이디", value: "id" },
- ]);
- </script>
|