add api get post
This commit is contained in:
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user