first commit

This commit is contained in:
brusnitsyn
2026-01-04 23:15:06 +09:00
commit 0ec04cfb4b
104 changed files with 19072 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<script setup>
import {NDatePicker} from 'naive-ui'
const onUpdateDateQuery = (value) => {
axios.get(`/api/metric-forms/1/report-by-date?sent_at=${value}`)
.then(res => {
console.log(res)
})
}
</script>
<template>
<NDatePicker panel type="date" @update-value="onUpdateDateQuery" />
</template>
<style scoped>
</style>