UNPKG

ember-cli-lightning-design-system

Version:

Easy installation and reusable components for the salesforce lightning design system.

17 lines (14 loc) 309 B
import Component from '@ember/component'; import layout from '../templates/components/slds-dropdown-item'; export default Component.extend({ layout, tagName: '', clicked: null, actions: { clicked(handler, next) { if (handler) { handler(next); } } } });