Property or method "info" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components,

源代码
App.Vue

<template>
<div>
<test v-for="post in posts" v-bind:title="post.title">
</test>
</div>
</template>
<script>
//import HelloWorld from './components/HelloWorld'/*要使用哪个模块就要显示调用声明*/
import test from './View/test'
export default {/*导出的是整个MVVM框架的信息*/
name: 'App',/*这个是组件的name*/
components: {/*组件的引入*/
test
},
}
</script>
<style>
</style>

test.vue

<template>
<div>
<h1>{{title}}</h1>
</div>
</template>
<script>
export default {
name:'test',
props:['title'],
data(){
return {
posts:[
{id:1,title:'one'},
{id:2,title:'two'},
{id:3,title:'three'}
],
}
}
}
</script>
<style scoped>
</style>

我在App.vue中取了test.vue的值,所有浏览器会报posts没有定义
解决方法
将test.vue中data()方法转移到App.vue中

App.vue

<template>
<div>
<test v-for="post in posts" v-bind:title="post.title">
</test>
</div>
</template>
<script>
//import HelloWorld from './components/HelloWorld'/*要使用哪个模块就要显示调用声明*/
import test from './View/test'
export default {/*导出的是整个MVVM框架的信息*/
name: 'App',/*这个是组件的name*/
components: {/*组件的引入*/
test
},
data(){
return {
posts:[
{id:1,title:'one'},
{id:2,title:'two'},
{id:3,title:'three'}
],
}
}
}
</script>
<style>
</style>

test.vue

<template>
<div>
<h1>{{title}}</h1>
</div>
</template>
<script>
export default {
name:'test',
props:['title'],
}
</script>
<style scoped>
</style>
posted @   小罗要有出息  阅读(354)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 字符编码:从基础到乱码解决
点击右上角即可分享
微信分享提示