1.0.1 • Published 5 years ago

comp-breadcrumb v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

comp-breadcrumb image

API

属性说明类型默认值
dataSource面包屑数据Array
style自定义样式Object

Example

import React from 'react';
import { render } from 'react-dom';
import CompBreadcrumb from 'comp-breadcrumb';

const data = [
  {
    title: '首页',
    link: 'home.html'
  },
  {
    title: '酒店列表页',
    link: 'list.html'
  },
  {
    title: '酒店详情页'
  }
];

render(
  <CompBreadcrumb
    dataSource={data}
    style={{fontSize: '14px'}}
  />,
  document.getElementById('app')
);

Develop

$ npm run start

Publish

$ cd ../..          // 返回项目根目录,通过 `lerna` 来构建与发布
$ npm run build
$ npm publish
1.0.1

5 years ago

1.0.0

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.1

6 years ago