Vue:将对象移交给组件以供其使用
在我的应用程序中,我有一个列表组件,我在另一个组件中使用它。目前,它看起来像这样:
<script setup>
const seed = [
{
key: value,
anotherKey: anotherValue,
},
// and so on...
];
</script>
<template>
<ul>
<li v-for="element in seed" :key="element.key" :anotherKey="element.anotherKey">
</ul>
</template>
我的问题是:是否可以以某种方式“移交”使用此列表组件的父组件内的对象,而不是从列表组件的脚本标记中获取对象?
In my app I have a list component which I use inside another component. Currently, it looks something like this:
<script setup>
const seed = [
{
key: value,
anotherKey: anotherValue,
},
// and so on...
];
</script>
<template>
<ul>
<li v-for="element in seed" :key="element.key" :anotherKey="element.anotherKey">
</ul>
</template>
My question is: Is it possible to somehow "hand over" an object inside the parent component which uses this list component instead of getting the object from within the list component's script tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在父组件中使用 Provide 将对象传递给子组件。
ParentComponent.vue (未经测试的代码)
ChildComponent.vue
您可以阅读有关在组合中提供的内容。
https://vuejs.org/api/composition-api-dependency-injection。 html
You can use provide in your parent component to pass an object to your child components.
ParentComponent.vue (Untested code)
ChildComponent.vue
You can read about provide in compositions.
https://vuejs.org/api/composition-api-dependency-injection.html