mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 08:13:39 +08:00
10 lines
302 B
JavaScript
10 lines
302 B
JavaScript
|
import Ember from 'ember';
|
||
|
|
||
|
export default Ember.View.extend({
|
||
|
|
||
|
tagName: 'span',
|
||
|
classNames: ['select'],
|
||
|
layout: Ember.Handlebars.compile('{{view Ember.Select content=view.content optionValuePath=view.optionValuePath optionLabelPath=view.optionLabelPath value=view.value}} {{fa-icon "sort"}}')
|
||
|
|
||
|
});
|