New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vue-scroll-toggle-class

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-scroll-toggle-class

[![Latest Version on NPM](https://img.shields.io/npm/v/vue-scroll-toggle-class.svg?style=flat-square)](https://npmjs.com/package/vue-scroll-toggle-class) [![Total Downloads on NPM](https://img.shields.io/npm/dt/vue-scroll-toggle-class.svg)](https://www.np

  • 0.1.19
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-64.29%
Maintainers
1
Weekly downloads
 
Created
Source

Latest Version on NPM Total Downloads on NPM Software License

Vue-scroll-toggle-class

Scroll Toogle Class component using Vue.js.

Installation

$ yarn add vue-scroll-toggle-class
# or
$ npm i --save vue-scroll-toggle-class

Global Registration

Register the component

import { VueScrollToggleClass } from 'vue-scroll-toggle-class';

Vue.component('vue-scroll-toggle-class', VueScrollToggleClass);

Install the plugin

import VueScrollToggleClass from 'vue-scroll-toggle-class';

Vue.use(VueScrollToggleClass);

Usage

<template>
  <vue-scroll-toggle-class
    repeat="on"
    position="top"
  >
    <div>Example</div>
  </vue-scroll-toggle-class>
</template>

Local Registration

Usage

<template>
  <vue-scroll-toggle-class
    repeat="on"
    position="top"
  >
    <div>Example</div>
  </vue-scroll-toggle-class>
</template>

<script>
import { VueScrollToggleClass } from "vue-scroll-toggle-class";
export default {
  components: {
    VueScrollToggleClass
  }
}
</script>

SSR

Create the plugins/vue-scroll-toggle-class.js :

import Vue from 'vue'
import VueScrollToggleClass from 'vue-scroll-toggle-class'

Vue.component('vue-scroll-toggle-class', VueScrollToggleClass)

Include plugin in your nuxt.config.js file:

module.exports = {
  plugins: ['~plugins/vue-scroll-toggle-class']
}

Props

PropData TypeRequiredDefaultDescription
repeatStringfalseoffrepeat toggle class
positionStringtruetoggle class position

Contributing

Welcome to improve vue-scroll-toggle-class with any issue, pull request or code review.

# Setup
$ cd vue-scroll-toggle-class
$ npm install

# dev-server
$ npm run serve

# Build
$ npm run build:lib

# Unit Testing
$ npm run test:unit

# Lint
$ npm run lint
# Lint - fix
$ npm run lint --fix

License

MIT

Keywords

FAQs

Package last updated on 05 May 2019

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