1. 首页
  2. 数据库
  3. 其它
  4. vue 渲染函数 & JSX

vue 渲染函数 & JSX

上传者: 2021-01-16 20:07:49上传 PDF文件 39.62KB 热度 17次
渲染函数 render 通过渲染函数渲染组件 Vue.component('myComponent', { render (h) { // createElement return h( 'div', // HTML tag、自定义组件、异步组件 { // 属性对象 attrs: { // 标签属性 id: 'wrap' }, class: { // 类名 'my-com': true }, props: { // DOM 属性,prop
用户评论