Last active
April 18, 2019 05:49
-
-
Save k33g/f4ea54b6a2cf9555b959 to your computer and use it in GitHub Desktop.
Revisions
-
k33g revised this gist
Nov 13, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -34,9 +34,9 @@ class HumansList extends Vue { } } let demo = new Demo() let humansList = new HumansList({ humans:[ new Human(), new Human({firstName:"Jane", lastName:"Doe"}) -
k33g revised this gist
Nov 13, 2014 . 1 changed file with 30 additions and 33 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,47 +1,44 @@ class Human { constructor (arg={firstName:"John", lastName:"Doe"}) { this.fields = arg; } get (fieldName) { return this.fields[fieldName]; } set (fieldName, value) { this.fields[fieldName] = value; return this; } } class Demo extends Vue { constructor () { var properties = { el: '#demo', data: { bob: new Human({firstName:"Bob", lastName:"Morane"}) } }; super(properties) } } class HumansList extends Vue { constructor (collection) { this.collection = collection; super({ el: "#humans-list", data: collection }) } } var demo = new Demo() window.humansList = new HumansList({ humans:[ new Human(), new Human({firstName:"Jane", lastName:"Doe"}) ] }); -
k33g created this gist
Nov 13, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ <div id="demo"> <h1>{{bob.fields.firstName}} {{bob.fields.lastName}}</h1> </div> <ul id="humans-list"> <li v-repeat="humans"> {{fields.firstName}} {{fields.lastName}} </li> </ul> 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,47 @@ /** * Created by k33g_org on 12/11/14. */ class Human { constructor (arg={firstName:"John", lastName:"Doe"}) { this.fields = arg; } get (fieldName) { return this.fields[fieldName]; } set (fieldName, value) { this.fields[fieldName] = value; return this; } } class Demo extends Vue { constructor () { var properties = { el: '#demo', data: { bob: new Human({firstName:"Bob", lastName:"Morane"}) } }; super(properties) } } class HumansList extends Vue { constructor (collection) { this.collection = collection; super({ el: "#humans-list", data: collection }) } } var demo = new Demo() window.humansList = new HumansList({ humans:[ new Human(), new Human({firstName:"Jane", lastName:"Doe"}) ] });