mirror of
https://github.com/flarum/framework.git
synced 2024-12-14 08:03:37 +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"}}')
|
|
});
|