Vue render函数,官方文档定义绝大部分时候我们使用template 来创建html 模板,但是纯html 和css都基本上都不具有编程能力,而当我们想使用 javascript的编程能力时,我们可以用render 函数来创建html 模板 1.使用简单的tamplate 去创建html 模板 // 使用简单的template 去创建html 模板 new Vue({ el:'#test', data:{ msg:'czczczcz' }, template: '<h1> {{this.…