mirror of
https://github.com/discourse/discourse.git
synced 2025-02-27 03:57:40 +08:00
7 lines
210 B
JavaScript
7 lines
210 B
JavaScript
export default Ember.Component.extend({
|
|
tagName: 'a',
|
|
attributeBindings: ['href', 'data-user-card'],
|
|
href: Ember.computed.alias('user.path'),
|
|
'data-user-card': Ember.computed.alias('user.username')
|
|
});
|