This package has been deprecated

Author message:

this package has been deprecated

vuejs-breadcrumbs

1.0.0 • Public • Published

Vue Pagination for Semantic-UI ⚡

  • This is on GitHub so let me know if I've messed it somewhere, give me a star ⭐ if you like it, 🍻
  • Breadcrumbs component for Semantic-UI made in Vue.

✅ Installation 👌

$ npm install vuejs-breadcrumbs

✅ Usage 🎓

import breadcrumbs from 'vuejs-breadcrumbs'
    
new Vue({
  el: '#app',,
  components: { breadcrumbs }
  data () {
    return {
      breadcrumbs: [{ 'url': 'customers.index', 'name': 'Customers' }],
      }
    }
  },
})

✅ Example 🍀

<body id="app">
  <breadcrumb 
    :breadcrumbs="this.breadcrumbs" 
    :icon="'stripe icon'" 
    :addbutton="{name: 'payments.create'}"
    newText="Charge">
  </breadcrumb>
</body>

✅ 📖 Props:

Name Type Default Required Description
breadcrumbs Array true Breadcrumb array passing in the breadcrumb objects with named Routes
addbutton Number false Add Button On Right Side
editbutton Function false Edit Button On Right Side
savebutton Function false Save Button On Right Side
discardbutton Function false Discard Button On Right Side
icon Function false Icon that'll be displayed if the breadcrumb is first
newText Function false Add New {newText}, it can be Add New Payment etc..

NPM :octocat:

NPM

License 📖

  • MIT

Package Sidebar

Install

npm i vuejs-breadcrumbs

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • vinayakkulkarni