docs
This commit is contained in:
parent
8ccfc14e88
commit
607f2fda8f
1 changed files with 14 additions and 12 deletions
|
@ -77,19 +77,21 @@ app.use = function(fn){
|
|||
};
|
||||
|
||||
/**
|
||||
* Mixin an app's context with your own object.
|
||||
* Mixin `obj` to this app's context.
|
||||
*
|
||||
* app.context({
|
||||
* get something(){
|
||||
* return 'hi';
|
||||
* },
|
||||
* set something(val){
|
||||
* this._something = val;
|
||||
* },
|
||||
* render: function(){
|
||||
* this.body = '<html></html>';
|
||||
* }
|
||||
* })
|
||||
* app.context({
|
||||
* get something(){
|
||||
* return 'hi';
|
||||
* },
|
||||
*
|
||||
* set something(val){
|
||||
* this._something = val;
|
||||
* },
|
||||
*
|
||||
* render: function(){
|
||||
* this.body = '<html></html>';
|
||||
* }
|
||||
* });
|
||||
*
|
||||
* @param {Object} obj
|
||||
* @return {Application} self
|
||||
|
|
Loading…
Reference in a new issue