我想使用 Nativescript-Vue 将动态子组件添加到父组件。例如:
<template>
<MyParentComponent>
<MyChildComponent :foo="foo"></MyChildComponent>
</MyParentComponent>
<template>
<script>
import MyParentComponent from './components/MyParentComponent';
import MyChildComponent from './components/MyChildComponent';
export default {
components: {
MyParentComponent,
MyChildComponent
},
data: function(){
return {
foo: ''
}
}
}
</script>
我想我需要在父组件中定义一个应该插入子组件的插槽,但我不知道应该怎么做。
有任何想法吗?