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

@netvlies/vue-breadcrumbs

Package Overview
Dependencies
Maintainers
4
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@netvlies/vue-breadcrumbs

Creates breadcrumbs list based on active Vue Route

  • 0.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
4
Weekly downloads
 
Created
Source

@netvlies/vue-breadcrumbs

Creates breadcrumbs list based on active Vue Route

Usage

  1. Make sure Vue Router is installed on 4.x.x
  2. Install this bundle
  3. Add plugin to vue application:
import { createApp } from 'vue';
import { breadcrumbBundle } from '@netvlies/vue-breadcrumbs';

...

import App from './App.vue';

createApp(App).use(breadcrumbBundle);
  1. Add breadcrumb text (and optional path) to your vue routes:
const routes = [
    {
        path: '/about/:test',
        name: 'about',
        meta: {
            breadcrumb: {
                parents: [
                    {
                        path: '/about/:test/test',
                        label: 'test'
                    }
                ],
                label: 'adf'
            }
        },
    }
]

When no path is provided, breadcrumbs falls back on parent of current breadcrumb.

Keywords

FAQs

Package last updated on 22 Nov 2021

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