当前位置: 首页 > 文档资料 > Vue.js 教程 >

7.2.10 Vue.compile

优质
小牛编辑
127浏览
2023-12-01
  • 参数:
    • {string} template
  • 用法:

    在 render 函数中编译模板字符串。只在独立构建时有效

    var res = Vue.compile('<div><span>{{ msg }}</span></div>')
    
    new Vue({
      data: {
        msg: 'hello'
      },
      render: res.render,
      staticRenderFns: res.staticRenderFns
    })