mirror of
https://github.com/flarum/framework.git
synced 2025-02-25 23:39:57 +08:00
8 lines
296 B
JavaScript
8 lines
296 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.View.extend({
|
|
tagName: 'span',
|
|
classNames: ['select'],
|
|
layout: Ember.Handlebars.compile('{{view "select" content=view.content optionValuePath=view.optionValuePath optionLabelPath=view.optionLabelPath value=view.value}} {{fa-icon "sort"}}')
|
|
});
|