📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP

vue-joyride

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

vue-joyride

Create guided tours for your apps

1.0.9
unpublished
latest
69

Supply Chain Security

100

Vulnerability

78

Quality

76

Maintenance

100

License

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created

Vue Joyride

NPM License

Lightweight tooltip component to explain new features of your Vue app < 10k 😎

joyride

Usage

npm i vue-joyride

<script setup>
import Joyride from 'vue-joyride';
import 'vue-joyride/dist/style.css';

const steps = [
  { content: '1st Vue logo modal', target: '#logo'},
  { content: '2nd Vue logo modal', target: '#logo-2'},
];

const isAppMounted = ref(false);

onMounted(() => {
  isAppMounted.value = true;
});
</script>


<template>
<Joyride :steps="steps" v-if="isAppMounted"/>
</template

Contact

Feel free to ping me 💫
connect@giladshohat.com

giladshohat.com

FAQs

Package last updated on 26 Sep 2023

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