Last active
April 17, 2020 02:00
-
-
Save Techn1x/6ea51e219a863f86d098b237407aa166 to your computer and use it in GitHub Desktop.
New Twiddle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Component from '@ember/component'; | |
import { set } from '@ember/object'; | |
export default Component.extend({ | |
init(...args) { | |
this._super(...args); | |
if (!this.currentDate) set(this, 'currentDate', '2000-12-12'); | |
}, | |
currentDate: null, | |
actions: { | |
updateCurrentDate(val) { | |
const currentDate = val; | |
this.callbackAction(currentDate); | |
}, | |
}, | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Controller from '@ember/controller'; | |
import { set } from '@ember/object'; | |
export default Controller.extend({ | |
currentDate: '1900-01-01', | |
actions: { | |
changeControllerDateTime() { | |
set(this, 'currentDate', 'x'); | |
}, | |
submitAction(date, time) { | |
set(this, 'currentDate', date); | |
} | |
} | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.17.0", | |
"EmberENV": { | |
"FEATURES": {}, | |
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false, | |
"_APPLICATION_TEMPLATE_WRAPPER": true, | |
"_JQUERY_INTEGRATION": true | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js", | |
"ember": "3.12.2", | |
"ember-template-compiler": "3.12.2", | |
"ember-testing": "3.12.2" | |
}, | |
"addons": { | |
"@glimmer/component": "1.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment