Vue get start
by tingtinghsu
HTML
<div id="app">
<p id="title">{{ array.map( x => x * x ) }}</p>
</div>
JavaScript
new Vue({
el: "#app",
data: {
array: [1, 3, 5, 7, 9]
}
})
by tingtinghsu
<div id="app">
<p id="title">{{ array.map( x => x * x ) }}</p>
</div>
new Vue({
el: "#app",
data: {
array: [1, 3, 5, 7, 9]
}
})