Skip to content

Commit d0296b5

Browse files
authored
Fix bug of using props before declaration in UserModal.vue
1 parent af7bf5c commit d0296b5

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

backend/src/views/Users/UserModal.vue

+8-7
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ import CustomInput from "../../components/core/CustomInput.vue";
7777
import store from "../../store/index.js";
7878
import Spinner from "../../components/core/Spinner.vue";
7979

80+
const props = defineProps({
81+
modelValue: Boolean,
82+
user: {
83+
required: true,
84+
type: Object,
85+
}
86+
})
87+
8088
const user = ref({
8189
id: props.user.id,
8290
name: props.user.name,
@@ -85,13 +93,6 @@ const user = ref({
8593

8694
const loading = ref(false)
8795

88-
const props = defineProps({
89-
modelValue: Boolean,
90-
user: {
91-
required: true,
92-
type: Object,
93-
}
94-
})
9596

9697
const emit = defineEmits(['update:modelValue', 'close'])
9798

0 commit comments

Comments
 (0)