Files
AstralRinth/src/routes/components/Select.md
2022-06-04 00:46:23 -07:00

415 B

<script lang="ts">
	import { Select } from 'omorphia'

	let sortMethod = 'downloads'
</script>

<Select
	options={[
		{ value: '', label: 'Relevance' },
		{ value: 'downloads', label: 'Downloads' },
		{ value: 'follows', label: 'Followers' },
		{ value: 'newest', label: 'Recently' },
		{ value: 'updated', label: 'Recently updated really fast whoot' },
	]}
	bind:value={sortMethod} />