项目作者: vaadin-component-factory

项目描述 :
Vaadin Component Factory Avatar Group
高级语言: JavaScript
项目地址: git://github.com/vaadin-component-factory/vcf-avatar-group.git
创建时间: 2019-07-10T08:26:24Z
项目社区:https://github.com/vaadin-component-factory/vcf-avatar-group

开源协议:Other

下载


Demo

https://vcf-avatar-group.netlify.com/

Installation

Install vcf-avatar-group:

  1. npm i @vaadin-component-factory/vcf-avatar-group --save

Usage

Once installed, import it in your application:

  1. import '@vaadin-component-factory/vcf-avatar-group';

And use it:

  1. <vcf-avatar-group></vcf-avatar-group>
  1. const people = [
  2. { name: 'Dave' },
  3. { abbr: 'JD' },
  4. { name: 'Hannah' },
  5. { image: 'https://randomuser.me/api/portraits/women/5.jpg', name: 'Jane' }
  6. ];
  7. const avatarGroup = document.querySelector('vcf-avatar-group');
  8. avatarGroup.items = people;

For each item, you can provide a name, abbr, or image. Please refer to vcf-avatar-item for more info.

You can set a max attribute to limit how many avatar items are shown. By default, the limit is 4.

Running demo

  1. Fork the vcf-avatar-group repository and clone it locally.

  2. Make sure you have npm installed.

  3. When in the vcf-avatar-group directory, run npm install to install dependencies.

  4. Run npm start to open the demo.

Contributing

To contribute to the component, please read the guideline first.

License

Commercial Vaadin Add-on License version 3 (CVALv3). For license terms, see LICENSE.

Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.