Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@codeporter/overlayscrollbars-vue

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codeporter/overlayscrollbars-vue

The OverlayScrollbars wrapper for Vue3.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

overlayscrollbars-vue

The OverlayScrollbars wrapper for Vue3.

Vue OverlayScrollbars

Installation

npm install @codeporter/overlayscrollbars-vue

Peer Dependencies

OverlayScrollbars for Vue3 has the following peer dependencies:

npm install overlayscrollbars
  • The Vue3 framework: vue
npm install vue

TypeScript

npm install @types/overlayscrollbars

Since this wrapper is written in TypeScript it comes with its generated typings.

Check out the recommended tsconfig.json options.

Usage

CSS

You have to import the OverlayScrollbars.css by yourself. The component doesn't do it for you as the styles are global styles!

import 'overlayscrollbars/css/OverlayScrollbars.css';

Import

Register global component:

import { createApp } from 'vue';
import App from './App.vue';
import { OverlayScrollbars } from ' @codeporter/overlayscrollbars-vue';
import 'overlayscrollbars/css/OverlayScrollbars.css';

const app = createApp(App)
app.use(OverlayScrollbars)
app.mount('#app')

Register local component:

<script setup lang="ts">
import { OverlayScrollbars } from ' @codeporter/overlayscrollbars-vue';
import 'overlayscrollbars/css/OverlayScrollbars.css';
</script>

or

<script lang="ts">
import { defineComponent } from 'vue';
import { OverlayScrollbars } from ' @codeporter/overlayscrollbars-vue';
import 'overlayscrollbars/css/OverlayScrollbars.css';

export default defineComponent({
  components: {
    OverlayScrollbars
  }
})
</script>

Template

After the registration you can use it in templates like:

<overlay-scrollbars>
  example content
</overlay-scrollbars>

The default selector is overlay-scrollbars, but in case you register it manually you can choose it by yourself.

Properties

PropertyTypeDefaultDescription
optionsobject-can be changed at any point in time, and the plugin will adapt
extensionsstring / array / object-only taken into account if the component gets mounted
<overlay-scrollbars 
  :options="{ scrollbars: { autoHide: 'scroll' } }" 
  :extensions="['extensionA', 'extensionB']"
>
</overlay-scrollbars>

You can read more about the options object here, extensions are documented here and here.

Instance

If you get the component reference, it exposes the OverlayScrollbars instance of the component, or null if the instance isn't initialized yet or already destroyed.

<script setup>
import { ref } from 'vue'
const scrollbar = ref(null)

const scollTo = () => {
  scrollbar.value?.instance?.scroll([0, '100%'], 400)
}
</script>
<template>
  <overlay-scrollbars ref="scrollbar"></overlay-scrollbars>
</template>

License

MIT

Keywords

FAQs

Package last updated on 27 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc