2021
03-05
03-05
详解vue3中组件的非兼容变更
函数式组件functionalattribute在单文件组件(SFC)<template>已被移除{functional:true}选项在通过函数创建组件已被移除//使用<dynamic-heading>组件,负责提供适当的标题(即:h1,h2,h3,等等),在2.x中,这可能是作为单个文件组件编写的://Vue2函数式组件示例exportdefault{functional:true,props:['level'],render(h,{props,data,children}){returnh(`h${props.level}`,data,children)}}/...
继续阅读 >