mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
9da77637b2
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
22 lines
368 B
Vue
22 lines
368 B
Vue
<script setup lang="ts">
|
|
const { as = 'div', active } = defineProps<{
|
|
as: any
|
|
active: boolean
|
|
}>()
|
|
|
|
const el = ref()
|
|
|
|
watch(() => active, (active) => {
|
|
const _el = unrefElement(el)
|
|
|
|
if (active && _el)
|
|
_el.scrollIntoView({ block: 'nearest', inline: 'start' })
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<component :is="as" ref="el">
|
|
<slot />
|
|
</component>
|
|
</template>
|