我也想问你,你的代码为什么是稀碎的。。。。。
这是你的代码对吧?我试了试是可以渲染出来的
<template>
<div>
<x :xx="xasd"></x>
</div>
</template>
<script>
const x = {
props: ['xx'],
template: `<div>{{xx}}</div>`
}
export default {
name: 'mengnb',
components: {
x
},
data () {
return {
xasd: '为什么加载不出来数据'
}
}
}
</script>
<style scoped></style>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…