1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<script setup lang="ts"> // 补充TS类型,非TS项目可删除lang="ts" import { defineProps } from 'vue'; const props = defineProps({ text: { type: String, default: 'zanwushuju' // 确保默认文本是zanwushuju } }); </script> <template> <up-empty mode="list"> </up-empty> </template> <style scoped lang="scss"> </style>