mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
24 lines
498 B
Vue
24 lines
498 B
Vue
<script lang="ts" setup>
|
|
import type { FontSize } from '~/composables/fontSize'
|
|
|
|
const sizes = ['xs', 'sm', 'md', 'lg', 'xl'] as FontSize[]
|
|
const fontSize = getFontSize()
|
|
</script>
|
|
|
|
<template>
|
|
<CommonDropdown>
|
|
<slot />
|
|
|
|
<template #popper>
|
|
<CommonDropdownItem
|
|
v-for="size in sizes"
|
|
:key="size"
|
|
:checked="size === fontSize"
|
|
@click="fontSize = size"
|
|
>
|
|
{{ size }}
|
|
</CommonDropdownItem>
|
|
</template>
|
|
</CommonDropdown>
|
|
</template>
|