多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
365 B

<script setup lang="ts">
const loadComments = async () => {
const data = await this.$api.utils.commentList({
row_id: this.meta.columns
.filter((c) => c.pk)
.map((c) => this.localState[c.title])
.join('___'),
fk_model_id: this.meta.id,
comments_only: this.commentsOnly,
})
}
</script>
<template></template>
<style scoped></style>