12345678910111213141516171819202122232425262728293031 |
- <script setup lang="ts">
- import {ref} from 'vue'
- defineProps<{ msg: string }>()
- const count = ref(0)
- </script>
- <template>
- <h1>{{ msg }}</h1>
- <el-button type="primary">这是一个按钮</el-button>
- </template>
- <style 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>
|