vue-gototop-button

1.0.4 • Public • Published

VUE GotopButton

安装

npm i vue-gototop-button

使用

全局加载组件

// main.js
import { createApp } from 'vue'
import { gtbutton } from 'vue-gototop-button'
import App from './App.vue'
// ...
createApp(App).use(gtbutton).mount('#app')

手动导入

<template>
    <GoTopBtn :top="20">
        <p></p>
    </GoTopBtn>
</template>
<script setup>
import { GoTopBtn } from 'vue-gototop-button'
</script>

参数

属性名 说明
top 当屏幕滚动小于该值时显示按钮

修改 css

node_modules/vue-gototop-button/GoTopButton.css修改

默认值:

button{
    position: fixed;
    right: 50px;
    bottom: 50px;
}

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i vue-gototop-button

      Weekly Downloads

      4

      Version

      1.0.4

      License

      MIT

      Unpacked Size

      3.15 kB

      Total Files

      8

      Last publish

      Collaborators

      • nightsrt