10 lines
235 B
Vue
10 lines
235 B
Vue
<template>
|
|
<Abar :href='"/user/user?no=" +data.userNo' >{{ data.nick }}</Abar>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
const props = defineProps({
|
|
// 字段名、类型、默认值
|
|
data: null,
|
|
showIcon: Number
|
|
})
|
|
</script> |