breadcrumbstest

1.0.2 • Public • Published

BreadCrumbs test

##安装

$ npm install breadcrumbstest --save

使用方法

import Vue from 'vue'
import App from './App'
import VueRouter from 'vue-router'
import breadcrumbs from 'breadcrumbs'

Vue.use(VueRouter)
Vue.use(breadcrumbs)

const home = {template: '<div><router-view/></div>'}
const _id = {template: '<div><h2>自定义ID</h2></div>'}
const Index = {template: '<div><h2>网站首页</h2></div>'}
const About = {template: '<div><h2>网站相关</h2></div>'}
const News = {template: '<div><h2>新闻资讯</h2></div>'}

const router = new VueRouter({
  routes: [
    {path: '/'},
    {
      path: '/home',
      component: home,
      meta: {
        breadcrumb: '首页'
      },
      children: [
        {
          path: '',
          component: Index
        },
        {
          path: 'about',
          component: About,
          meta: {
            breadcrumb: '关于'
          },
          children: [
            {
              path: 'aaa',
              component: News
            }]
        },
        {
          name: 'News',
          path: 'News',
          component: News
        },
        {
          path: ':id',
          component: _id
        }
      ]
    }
  ]
})

在meta里面设置breadcrumb即可显示面包屑文字(链接在本身的path)

Readme

Keywords

none

Package Sidebar

Install

npm i breadcrumbstest

Weekly Downloads

0

Version

1.0.2

License

ISC

Unpacked Size

4.32 kB

Total Files

3

Last publish

Collaborators

  • layen-king