23 lines
516 B
Vue
23 lines
516 B
Vue
<template>
|
|
<!-- 用户信息 -->
|
|
<div class="flex flex-col">
|
|
<UserInfo></UserInfo>
|
|
<HotLlabel v-model="channelId" class="mt-18px" v-model:channelIdList="channelIdList"></HotLlabel>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import UserInfo from './UserInfo.vue'
|
|
import HotLlabel from './HotLlabel.vue'
|
|
|
|
const channelId = defineModel('modelValue', {
|
|
required: true,
|
|
})
|
|
|
|
const channelIdList = defineModel<any>('channelIdList', {
|
|
required: true,
|
|
})
|
|
</script>
|
|
|
|
<style scoped></style>
|