1234567891011121314151617181920212223 |
- <template>
- <div>留言互动</div>
- </template>
- <script setup lang="ts">
- defineProps<{ msg: string }>()
- </script>
- <style lang="sass" scoped>
- a
- color: #42b983
- label
- margin: 0 0.5em
- font-weight: bold
- code
- background-color: #eee
- padding: 2px 4px
- border-radius: 4px
- color: #304455
- </style>
|