Files
pages/docs/components/dropdown-select.md
2023-06-06 16:07:58 -07:00

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
/>