Initial commit for nuxt

This commit is contained in:
Bahadir Sofuoglu 2022-09-06 14:52:18 +03:00
parent 271fd62d8d
commit 3cb3910561
1047 changed files with 15090 additions and 175754 deletions

View file

@ -1,34 +0,0 @@
const ScrollTopProps = [
{
name: "target",
type: "string",
default: "window",
description: 'Target of the ScrollTop, valid values are "window" and "parent".'
},
{
name: "threshold",
type: "number",
default: "400",
description: "Defines the threshold value of the vertical scroll position of the target to toggle the visibility."
},
{
name: "icon",
type: "string",
default: "pi pi-chevron-up",
description: "Icon to display."
},
{
name: "behavior",
type: "string",
default: "smooth",
description: 'Defines the scrolling behavi, "smooth" adds an animation and "auto" scrolls with a jump.'
}
];
module.exports = {
scrolltop: {
name: "ScrollTop",
description: "ScrollTop gets displayed after a certain scroll position and used to navigates to the top of the page quickly.",
props: ScrollTopProps
}
};