Files
Yi.Admin/Yi.Vue3.x.Vant/src/components/HelloWorld.vue
2022-10-05 23:54:53 +08:00

20 lines
223 B
Vue

<script setup lang="ts">
import { ref } from 'vue'
defineProps<{ msg: string }>()
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
</template>
<style scoped>
.read-the-docs {
color: #888;
}
</style>