myParagraph.vue
622 Bytes
<script>
export default {
data() {
return {}
},
computed: {},
mounted() {},
methods: {},
components: {},
render: function(createElement) {
// var myParagraphVNode = createElement('p', 'hi')
// return createElement('div', [
// // Yikes - duplicate VNodes!
// myParagraphVNode, myParagraphVNode
// ])
// return createElement('div',
// Array.apply(null, {
// length: 10
// }).map(function() {
// return createElement('p', 'hi')
// })
// )
}
}
</script>