mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-19 23:02:00 +08:00
18 lines
439 B
Vue
18 lines
439 B
Vue
<script lang="ts" setup>
|
|
import { ElBacktop } from 'element-plus'
|
|
import { useDesign } from '@/hooks/web/useDesign'
|
|
|
|
defineOptions({ name: 'BackTop' })
|
|
|
|
const { getPrefixCls, variables } = useDesign()
|
|
|
|
const prefixCls = getPrefixCls('backtop')
|
|
</script>
|
|
|
|
<template>
|
|
<ElBacktop
|
|
:class="`${prefixCls}-backtop`"
|
|
:target="`.${variables.namespace}-layout-content-scrollbar .${variables.elNamespace}-scrollbar__wrap`"
|
|
/>
|
|
</template>
|