首页 > 代码库 > render函数的简单使用
render函数的简单使用
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> </head> <body> <div id="app"> <child :level=1>hello Vue</child> <child :level=6> <span slot="footer">span</span> <p slot="header">header slot<span>span</span></p> </child> </div> <script src="http://www.mamicode.com/node_modules/vue/dist/vue.js"></script>//使用时改为自己的vue路径 <script> Vue.component(‘child‘, { render: function(createElement) { return createElement(‘h‘+ this.level, { ‘class‘: { foo: true, bar: true }, style: { color: "red" }, attrs: { id: ‘foo‘, ‘data-id‘: ‘bar‘ }, domProps: { // }, on: { click: this.clickit }, }, [this.$slots.default] ) }, template: ‘<div v-if="level===1"><slot></slot></div>‘, props: { level: { type: Number, required: true } }, methods: { clickit: function() { console.log(‘click‘) } } }) new Vue({ el:"#app" }) </script> </body> </html>
render函数的简单使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。