Last active
April 18, 2019 05:49
-
-
Save k33g/f4ea54b6a2cf9555b959 to your computer and use it in GitHub Desktop.
Vue.js + ES6
This file contains 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
<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 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
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 | |
}) | |
} | |
} | |
let demo = new Demo() | |
let humansList = new HumansList({ | |
humans:[ | |
new Human(), | |
new Human({firstName:"Jane", lastName:"Doe"}) | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Isn't "super()" supposed to be before "this"? File main.js, line 30-31.