1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <template> <div class="studv"> <h2>Studen组件</h2> <span>{{stuName}}</span> </div> </template>
<script> export default { name: 'Student', data() { return { stuName:'odinsam' } }, } </script>
<style scoped> .studv{ margin-left:50px; background-color: bisque; padding: 20px; } </style>
|