Files
front-pc/pages/channel/components/LeftContent.vue

19 lines
392 B
Vue

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