vue组件传参传scope.row
时间: 2023-07-23 22:39:17 浏览: 131
vue路由传参 vue路由传参
5星 · 资源好评率100%
好的,针对你的问题,传递 `scope.row` 的方式有两种:
1. 通过 `props` 属性传递
在父组件中,将 `scope.row` 作为属性传递给子组件,然后在子组件中通过 `props` 接收。示例代码如下:
父组件中:
```
<template>
<div>
<child-component :data="scope.row"></child-component>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue';
export default {
components: {
ChildComponent,
},
};
</script>
```
子组件中:
```
<template>
<div>{{ data }}</div>
</template>
<script>
export default {
props: {
data: {
type: Object,
required: true,
},
},
};
</script>
```
2. 通过 `$attrs` 和 `$listeners` 传递
在父组件中,通过 `$attrs` 和 `$listeners` 将 `scope.row` 传递给子组件。示例代码如下:
父组件中:
```
<template>
<div>
<child-component v-bind="$attrs" v-on="$listeners"></child-component>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue';
export default {
components: {
ChildComponent,
},
};
</script>
```
子组件中:
```
<template>
<div>{{ $attrs }}</div>
</template>
```
以上是针对你的问题的解答,希望能对你有所帮助!
阅读全文