Vue中render方法的使用详解
网络编程 2021-07-04 17:33www.168986.cn编程入门
这篇文章主要为大家详细介绍了Vue中render方法的使用,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
先说一下对官网上demo的个人理解:
<!DOCTYPE html> <html> <head> <title>Vue的render方法说明</title> <script src="vue.js"></script> </head> <body> <div id="app"> <child :level="1"> hello world </child> </div> <script type="text/x-template" id="anchored-heading-template"> <div> <h1 v-if="level === 1"> <slot></slot> </h1> <h2 v-if="level === 2"> <slot></slot> </h2> <h3 v-if="level === 3"> <slot></slot> </h3> <h4 v-if="level === 4"> <slot></slot> </h4> <h5 v-if="level === 5"> <slot></slot> </h5> <h6 v-if="level === 6"> <slot></slot> </h6> </div> </script> <script type="text/javascript"> Vue.ponent('child', { template: '#anchored-heading-template', props: { level: { type: Number, required: true } } }); new Vue({ el: "#app" }) </script> </body> </html>
虽然使用template定义组件的方法非常的直观,这样会造成代码过长。可以使用render的方法
<!DOCTYPE html> <html> <head> <title>Vue的render方法说明</title> <script src="vue.js"></script> </head> <body> <div id="app"> <child :level="1"> hello world </child> </div> <script type="text/javascript"> Vue.ponent('child', { render:function (createElement) { var body=this.$slots.default; //this.$slots返回了一个组件分发下来的元素和内容 //this.$slots.default返回了具名的内容 return createElement( 'h'+this.level, //this.level是利用v-bind注入到组件中的level body ) }, //因为vue中组件父组件无法向子组件注入内容。所以我们需要通过 //v-bind定义一个key,value向子组件注入内容。所要接收的值也需要在定义组件时的props属性中的定义一下 props:{ level:{ } } }); new Vue({ el: "#app" }) </script> </body> </html>
狼蚁网站SEO优化是一个slot具名分发的demo:介绍了creatElement的用法:
<!DOCTYPE html> <html> <head> <title>Vue的render方法说明</title> <script src="vue.js"></script> </head> <body> <div id="app"> <child> <p slot="header">this is header</p> <p slot="center">this is center</p> <p slot="footer">this is footer</p> </child> </div> <script type="text/javascript"> Vue.ponent('child', { render: function (createElement) { var header=this.$slots.header; var center=this.$slots.center; var footer=this.$slots.footer; //createElement第一个参数是标签名,第二个参数是值 return createElement('div',[ createElement('div', header), createElement('div', center), createElement('div', footer), ]) } }); new Vue({ el: "#app" }) </script> </body> </html>
所创建的组件的demo结果如下:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程