This commit is contained in:
X1627315083@163.com
2026-04-09 10:39:02 +08:00
parent 9857c2a2f9
commit e79a635220
4 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,47 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
import sellerHeader from "../../seller-header.vue"
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
</script>
<template>
<div class="myListings-seller">
<seller-header
title="Select Collection"
:breadcrumbs="[
{title:'My Listings', name:'myListingsIndex'},
{title:'Select Collection', name: 'myListingsSelect' }
]"
>
</seller-header>
<div class="content">
1231222aaa
</div>
</div>
</template>
<style scoped lang="less">
.myListings-seller {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
> .content {
margin-top: 2rem;
flex: 1;
overflow: hidden;
}
}
</style>