1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <script>
| import MyComponent from "../test1/parent1.vue"
|
| export default {
| name: "xx",
|
| render: function(createElement) {
| var h = this.$createElement
| var test = {
| props: {
| articleList: ['红楼梦', '西记', '三国演']
| }
| }
| return ( < MyComponent {
| ...test
| } > < /MyComponent>)
|
| }
| };
| </script>
|
|