HelloWorld.vue 414 B

12345678910111213141516171819202122232425262728293031
  1. <script setup lang="ts">
  2. import {ref} from 'vue'
  3. defineProps<{ msg: string }>()
  4. const count = ref(0)
  5. </script>
  6. <template>
  7. <h1>{{ msg }}</h1>
  8. <el-button type="primary">这是一个按钮</el-button>
  9. </template>
  10. <style scoped>
  11. a {
  12. color: #42b983;
  13. }
  14. label {
  15. margin: 0 0.5em;
  16. font-weight: bold;
  17. }
  18. code {
  19. background-color: #eee;
  20. padding: 2px 4px;
  21. border-radius: 4px;
  22. color: #304455;
  23. }
  24. </style>