Skip to content

Instantly share code, notes, and snippets.

View pyuan's full-sized avatar
🏀
#hooper4life

Paul pyuan

🏀
#hooper4life
  • Burnaby BC, Canada
View GitHub Profile
@pyuan
pyuan / application.controller.js
Last active April 5, 2018 19:06 — forked from nem035/application.controller.js
<select> computed properties example
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
options1: [1, 2, 3],
selectedOption: 1,
options2: Ember.computed('selectedOption', function() {