Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <template>
- <div class="entries">
- <span class="entry" v-for="entry in entries"
- @click="$emit('select', entry.value)"
- >{{entry.text}}</span>
- </div>
- </template>
-
- <style scoped>
- .entries {
- display: flex;
- flex-flow: column;
- position: absolute;
- left: 0;
- background: var(--secondary-bg);
- width: 100%;
- margin-top: 5px;
- z-index: 3;
- border: 1px solid black;
- top: 100%;
- }
-
- .entry {
- border-bottom: 1px solid var(--text);
- padding: 5px;
- cursor: pointer;
- }
- </style>
-
- <script setup>
- const props = defineProps(['entries'])
- const emits = defineEmits(['select'])
- </script>
|