Skip to content

Instantly share code, notes, and snippets.

@hell03610
Last active November 10, 2017 22:17
Show Gist options
  • Save hell03610/cead29105cf80afa2b0cbd5f67db13fe to your computer and use it in GitHub Desktop.
Save hell03610/cead29105cf80afa2b0cbd5f67db13fe to your computer and use it in GitHub Desktop.
01 - Basic App
import Ember from 'ember';
export default Ember.Route.extend({
model: function() {
return {
appName: 'CanariasJS'
}
}
});
<h1>Welcome to {{model.appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
{
"version": "0.8.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.5.1",
"ember-data": "2.5.2",
"ember-template-compiler": "2.5.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment