Skip to content

Commit

Permalink
Add input component props
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Jan 23, 2024
1 parent c4e76e0 commit 20eccb4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions panel/src/components/Forms/Field/LinkField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,12 @@

<script>
import { props as FieldProps } from "../Field.vue";
import { props as InputProps } from "@/mixins/input.js";
import { props as InputComponentProps } from "../Input.vue";
import { props as InputMixinProps } from "@/mixins/input.js";
import { options } from "@/mixins/props.js";
export const props = {
mixins: [FieldProps, InputProps, options],
mixins: [FieldProps, InputComponentProps, InputMixinProps, options],
props: {
value: {
default: "",
Expand Down

0 comments on commit 20eccb4

Please sign in to comment.