Student.vue 409 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="demo">
  3. <h2>学生姓名:{{ name }}</h2>
  4. <h2>学生性别:{{ sex }}</h2>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name:'Student',
  10. data() {
  11. return {
  12. name:'张三',
  13. sex:'男'
  14. }
  15. },
  16. }
  17. </script>
  18. <style scoped>
  19. .demo{
  20. background-color: orange;
  21. }
  22. </style>