You've already forked AstralRinth
1.2 KiB
1.2 KiB
Dropdown
<script setup> import {ref} from "vue"; const value = ref(null); const newValue = ref(null); const options = ref([{ test: 'hello', display: 'no' }, { test: 'nob', display: 'yes' }, { test: 'ball', display: 'eat' }]); </script><DropdownSelect
v-model="value"
:options="['Daily', 'Weekly', 'Monthly', 'Tomorrow', 'Yesterday', 'Today', 'Biweekly', 'Tuesday', 'January']"
placeholder="Choose Frequency"
render-up
/>