forked from opentiny/tiny-vue
26 lines
452 B
Vue
26 lines
452 B
Vue
<template>
|
|
<tiny-user v-model="user">
|
|
<template #options="slotScope">
|
|
<div>
|
|
<span>{{ slotScope.slotScope.employeeNumber }}</span
|
|
>-<span>{{ slotScope.slotScope.email }}</span>
|
|
</div>
|
|
</template>
|
|
</tiny-user>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { User } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyUser: User
|
|
},
|
|
data() {
|
|
return {
|
|
user: '702973890055088'
|
|
}
|
|
}
|
|
}
|
|
</script>
|