ant-design-vue/components/back-top/demo/custom.vue
2023-01-26 10:13:10 +08:00

49 lines
969 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<docs>
---
order: 1
title:
zh-CN: 自定义样式
en-US: Custom style
---
## zh-CN
可以自定义回到顶部按钮的样式限制宽高`40px * 40px`
## en-US
You can customize the style of the button, just note the size limit: no more than `40px * 40px`.
</docs>
<template>
<div id="components-back-top-demo-custom">
<a-back-top @click="handleClick">
<div class="ant-back-top-inner">UP</div>
</a-back-top>
Scroll down to see the bottom-right
<strong style="color: #1088e9">blue</strong>
button.
</div>
</template>
<script setup>
const handleClick = () => {
console.log('click');
};
</script>
<style scoped>
:deep(#components-back-top-demo-custom) .ant-back-top {
inset-block-end: 100px;
}
#components-back-top-demo-custom .ant-back-top-inner {
height: 40px;
width: 40px;
line-height: 40px;
border-radius: 4px;
background-color: #1088e9;
color: #fff;
text-align: center;
font-size: 20px;
}
</style>