Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
webfansplz committed Mar 4, 2024
1 parent eaaedf5 commit 26b74b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const props = withDefaults(defineProps<{
})
defineEmits<{
'enableEditInput': [type: EditorInputValidType]
'addNewProp': [type: EditorAddNewPropType]
enableEditInput: [type: EditorInputValidType]
addNewProp: [type: EditorAddNewPropType]
}>()
const editInspectorState = defineDevToolsAction('devtools:edit-inspector-state', (devtools, payload: InspectorStateEditorPayload) => {
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/components/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ defineEmits<{
'update:visible': [value: boolean]
}>()
defineSlots<{
default: () => any
popper: (props: { hide: () => void }) => any
'default': () => any
'popper': (props: { hide: () => void }) => any
'button-icon': () => any
'button-icon-right': () => any
}>()
Expand Down

0 comments on commit 26b74b7

Please sign in to comment.