Vue.compile( template )

Vue.compile( template )

Arguments:
    {string} template

Usage:

Compiles a template string into a render function. Only available in the full build.

var res = Vue.compile('<div><span>{{ msg }}</span></div>')

new Vue({
  data: {
    msg: 'hello'
  },
  render: res.render,
  staticRenderFns: res.staticRenderFns
})

See also: Render Functions
Published 133 original articles · praised 189 · 10,000+ views

Guess you like

Origin blog.csdn.net/blog_programb/article/details/105603381