很好用,就学习了下https://cn.vuejs.org/guide/typescript/composition-api.html#typing-component-props
https://cn.vuejs.org/api/sfc-script-setup.html
https://blog.csdn.net/weixin_45203607/article/details/123130829
<template>
<UserInfo></UserInfo>
</template>
<script>
import UserInfo from './components/UserInfo.vue';
export default {
name: "App",
components:{
UserInfo,
},
setup(){
}
};
</script>
)<style scoped></style>
<template>
<UserInfo></UserInfo>
</template>
<script setup lang="ts">
// This starter template is using Vue 3