add api get post

This commit is contained in:
2024-11-04 06:45:34 +07:00
parent bd7da15ca3
commit 8c2ad217eb
12 changed files with 1438 additions and 1323 deletions

View File

@@ -1,8 +1,6 @@
import { h } from 'vue'
import { Icon } from '@iconify/vue'
import type { IconSet, IconAliases, IconProps } from 'vuetify'
import {Icon} from "#components";
const aliases: IconAliases = {
collapse: "ph:caret-up",
complete: "ph:check",
@@ -43,12 +41,9 @@ const aliases: IconAliases = {
calendar: "ph:calendar",
};
const custom: IconSet = {
component: (props: IconProps) => h(Icon,{
name: props.icon,
tag: props.tag,
disabled: props.disabled
}),
}
const custom: IconSet = {
// @ts-ignore
component: (props: IconProps) => h(Icon, { ...props }),
};
export { aliases, custom };