Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

我这么写为什么没有用啊

<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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

我也想问你,你的代码为什么是稀碎的。。。。。
这是你的代码对吧?我试了试是可以渲染出来的

<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>

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...