You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
301 B
21 lines
301 B
2 years ago
|
<template>
|
||
|
<div class="child">
|
||
|
<h3>我是child组件(子)</h3>
|
||
|
<son/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import son from "@/components/Son.vue";
|
||
|
export default {
|
||
|
name: "Child",
|
||
|
components:{son}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.child{
|
||
|
background-color: skyblue;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
</style>
|