7 lines
77 B
JavaScript
7 lines
77 B
JavaScript
var app = new Vue({
|
|
el: '#app',
|
|
data: {
|
|
title: "Hello world."
|
|
}
|
|
})
|