123456789101112131415161718192021 |
- <template>
- <div class="child">
- <h3>我是Child组件</h3>
- <Son/>
- </div>
- </template>
- <script>
- import Son from './Son'
- export default {
- name:'Child',
- components:{Son},
- }
- </script>
- <style>
- .child{
- background-color: skyblue;
- padding: 10px;
- }
- </style>
|