作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
当然,UI组件已经包装得足够方便了。但是,我想重用一些带有自定义选项的组件。
特别是,我想重用data tables component .
如果所有 View 都具有完全相同的 header 和数据,那没问题。当每个 View 都有不同的数据时,它就不起作用了。
这是我的代码:
Wrapper.vue
<template>
<v-card>
<v-card-title>
<span class="pr-3">{{ tableTitle }}</span>
<slot name="actions"/>
<v-spacer/>
<v-text-field
append-icon="search"
label="search"
single-line
hide-details
v-model="search"
/>
</v-card-title>
<v-data-table
:search="search"
:headers="headers"
:items="items"
hide-actions
>
<!-- problem is here! -->
<slot name="items" slot="items" slot-scope="props"></slot>
<template slot="expand" slot-scope="props">
<v-card flat>
<v-card-text>{{ props.item.note }}</v-card-text>
</v-card>
</template>
<template slot="no-data">
<v-alert :value="true" color="error" icon="warning">
no data.
</v-alert>
</template>
<template slot="no-results">
<v-alert :value="true" color="error" icon="warning">
no result.
</v-alert>
</template>
</v-data-table>
</v-card>
</template>
<script>
export default {
props: {
tableTitle: {type: String},
search: {type: String},
headers: {type: Array},
items: {type: Array}
}
}
</script>
Main.vue
<template>
<v-layout fluid fill-height justify-center align-center row wrap>
<v-flex sm12 md12 fill-height>
<main-custom-table
tableTitle="table1"
:headers="headers"
:items="items"
>
<template slot="actions">
<v-btn color="info">
<v-icon>add</v-icon>
add
</v-btn>
</template>
<!-- problem is here! -->
<template slot="items">
<tr>
<td class="text-xs-left">{{ items.id }}</td>
<td class="text-xs-left">{{ items.data1 }}</td>
<td class="text-xs-left">{{ items.data2 }}</td>
<td class="justify-center">
<v-btn icon class="mx-0" @click="">
<v-icon color="teal">edit</v-icon>
</v-btn>
</td>
</tr>
</template>
</main-custom-table>
</v-flex>
</v-layout>
</template>
<script>
export default {
name: "main",
data() {
return {
dialog: false,
search: '',
headers: [
{text: 'ID', value: 'id'},
{text: 'DATA1', value: 'data1'},
{text: 'DATA2', value: 'data2'}
],
items: [
{
'id': 1,
'data1': 10,
'data2': 12,
'note': aaaaaa
},
{
'id': 2,
'data1': 20,
'data2': 13,
'note': bbbbbb
},
{
'id': 5,
'data1': 30,
'data2': 14,
'note': cccccc
}
]
};
}
}
</script>
我只想在 Main.vue(和其他 View )中编写 tbody,并在 Wrapper.vue 中编写其他可选元素。
最佳答案
为了包装组件,您应该使用以下语法。
inheritAttrs: false
和 v-bind:$attrs
: 在组件上使用该选项将包装器中使用的所有属性传递给目标组件。v-for="(index, name) in $scopedSlots" v-slot:[name]="data"
和 <slot :name="name" v-bind="data"></slot>
: 使用它来遍历目标组件上定义的所有插槽,并在包装器中定义它们。v-on:$listeners
:使用该选项通过包装器传递来自目标组件的所有事件。在定义了所有这些之后,包装器将按预期工作。它只会包装组件。然后您可以添加自定义项。
包装器
<template>
<v-data-table
v-bind="$attrs"
v-on="$listeners"
>
<template v-for="(index, name) in $scopedSlots" v-slot:[name]="data">
<slot :name="name" v-bind="data"></slot>
</template>
</v-data-table>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'
@Component({
name: 'BaseTable',
inheritAttrs: false
})
export default class extends Vue {
}
</script>
关于vue.js - 如何在 VueJS 中包装一个组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49011329/
我是一名优秀的程序员,十分优秀!