1
0

feat: migrate utils

This commit is contained in:
2026-06-30 15:41:34 +08:00
parent fda2fe9ec9
commit fcc022d070
2 changed files with 37 additions and 3 deletions

View File

@@ -7,11 +7,11 @@ import {
getFullOwn as apiCollectionGetFullOwn,
getSharing as apiCollectionGetSharing,
getDetailOwn as apiCollectionGetDetailOwn,
type CollectionRow,
deleteOwn as apiCollectionDeleteOwn,
updateOwn as apiCollectionUpdateOwn,
addSharing as apiCollectionAddSharing,
deleteSharing as apiCollectionDeleteSharing
deleteSharing as apiCollectionDeleteSharing,
type CollectionRow,
} from '@/api/collection';
import OwnedItem from '@/components/collection/OwnedItem.vue';
import SharingItem from '@/components/collection/SharingItem.vue';
@@ -251,4 +251,16 @@ const deleteSharingItem = async (username: string) => {
<MessageBox ref="messagebox" />
</template>
<style scoped></style>
<style scoped>
div.control-list {
display: flex;
flex-flow: row;
flex-wrap: wrap;
}
div.control-list > * {
margin-right: 0.75rem;
margin-bottom: 0.75rem;
margin-left: 0 !important;
}
</style>