123456789101112131415161718192021222324 |
- <template>
- <div>
- <school></school>
- <student></student>
- </div>
- </template>
- <script>
- // 引入组件
- import School from './School.vue'
- import Student from './Student.vue'
- export default {
- name:'App',
- components:{
- School,
- Student
- }
- }
- </script>
- <style>
- </style>
|