vue-button-up
v1.1.1
Published
Move up button for VUE2-3
Readme
vue-button-up with Vue3 and Vue2.
Button with the functionality of scrolling the page up for Vue. DEMO on codesanbox
Navigation
Features
used vue2, vue3
easy to install
Easy application
Using slot
Use with icons, images, by default
Possibility to work on the button design
Installation
```
npm install --save vue-button-up
```Usage
#default
<VuejsHelloApp>
<template #default>
<p>↑</p>
</template>
</VuejsHelloApp>
<script>
import VuejsHelloApp from 'vue-button-up'
export default {
components: {
VuejsHelloApp
}
}
</script>#images
<VuejsHelloApp>
<template #default>
<img
:src="require(`@/assets/img/buttonTop.png`)"
>
</template>
</VuejsHelloApp>
<script>
import VuejsHelloApp from 'vue-button-up'
export default {
components: {
VuejsHelloApp
}
}
</script>