学习vue第二天

vue

Posted by lisbeth on July 7, 2019

Talk is cheap. Show me the code.!

Vue.js 的核心是一个允许采用简洁的模板语法来声明式地将数据渲染进 DOM 的系统:

var app = new Vue({ el: ‘#app’, data: { message: ‘Hello Vue!’ } })