vue-bulma-breadcrumb

Breadcrumb component for Vue Bulma


Keywords
vue, bulma, vue-bulma, vue-bulma-component, vue-bulma-breadcrumb, breadcrumb
License
MIT
Install
npm install vue-bulma-breadcrumb@1.0.1

Documentation

Breadcrumb

Breadcrumb component for Vue Bulma.

Installation

$ npm install vue-bulma-breadcrumb

Examples

<template>
  <nav class="level app-levelbar">
    <div class="level-left">
      <div class="level-item">
        <h3 class="subtitle is-5">
          <strong>{{ name }}</strong>
        </h3>
      </div>
    </div>

    <div class="level-right is-hidden-mobile">
      <breadcrumb :list="list"><breadcrumb>
    </div>
  </nav>
</template>

<script>
import Breadcrumb from 'vue-bulma-breadcrumb'

export default {
  components: {
    Breadcrumb
  },

  data () {
    return {
    }
  },

  computed: {
    name () {
      return this.$route.name
    },

    list () {
      return this.$route.matched
    }
  }
}
</script>

Badges


fundon.me  ·  GitHub @fundon  ·  Twitter @_fundon