index.vue 306 B

1234567891011121314151617181920212223
  1. <template>
  2. <div>留言互动</div>
  3. </template>
  4. <script setup lang="ts">
  5. defineProps<{ msg: string }>()
  6. </script>
  7. <style lang="sass" scoped>
  8. a
  9. color: #42b983
  10. label
  11. margin: 0 0.5em
  12. font-weight: bold
  13. code
  14. background-color: #eee
  15. padding: 2px 4px
  16. border-radius: 4px
  17. color: #304455
  18. </style>