Skip to content

Instantly share code, notes, and snippets.

@feanor07
Last active December 24, 2018 07:21
Show Gist options
  • Save feanor07/1460b3639732cc08b349361854202d2c to your computer and use it in GitHub Desktop.
Save feanor07/1460b3639732cc08b349361854202d2c to your computer and use it in GitHub Desktop.
so#53909437
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
const Router = EmberRouter.extend({
location: 'none',
rootURL: config.rootURL
});
Router.map(function() {
this.route('my-route')
});
export default Router;
import Ember from 'ember';
export default Ember.Route.extend({
actions: {
dummyAction() {
alert('hi')
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
<button {{action 'dummyAction'}}>Push</button>
<!-- Below will throw an error when commented out! Check it!
<button onclick={{action 'dummyAction'}}>Push</button>
-->
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment