Simplify ContentList

This commit is contained in:
2024-10-06 01:22:05 -04:00
parent 00be9bf118
commit cfae099da2
2 changed files with 9 additions and 25 deletions

View File

@@ -44,15 +44,11 @@ const props = defineProps({
creatorId: {
type: String,
required: true
},
contents: {
type: Array,
default: () => [],
},
}
});
const client = useClient()
const contents = ref(props.contents)
const contents = ref([])
const errorMessage = ref()
let last_id = null