School.vue 424 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="school">
  3. <h2>学校名称:{{ name }}}</h2>
  4. <h2>学校地址:{{ address }}}</h2>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name:'School',
  10. data() {
  11. return {
  12. name:'尚硅谷',
  13. address:'北京昌平'
  14. }
  15. },
  16. }
  17. </script>
  18. <style>
  19. .school{
  20. background-color: gray;
  21. }
  22. </style>