Vue.js 中集成 t-back-top 组件:在 t-form 下方添加返回顶部按钮
将上述代码集成进下面代码,应该加在 t-form 的下方。具体位置如下:
<t-form
ref="form"
:data="formData"
:rules="FORM_RULES"
label-align="top"
:label-width="100"
@reset="onReset"
@submit="onSubmit"
style="margin-left: 0px;margin-right: 10px;"
>
<!-- t-form 的内容 -->
</t-form>
<div style='position: absolute; height: 20px'>
<t-back-top style='position: fixed; bottom: 20px; right: 20px; z-index: 9999;' />
</div>
通过这种方式,您可以在包含表单内容的区域下方添加一个返回顶部按钮,方便用户在填写完表单后快速回到页面顶部。
原文地址: https://www.cveoy.top/t/topic/qzBL 著作权归作者所有。请勿转载和采集!