- remove default import - defineProps

This commit is contained in:
2023-07-30 22:32:29 +02:00
parent 6f5d188017
commit 767fb868cd
5 changed files with 4 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
<script setup>
import { defineProps, computed, ref } from 'vue';
import { computed, ref } from 'vue';
import Education from './Body/Education.vue';
import MajorAchivments from './Body/MajorAchivments.vue';
import Skills from './Side/Skills.vue';

View File

@@ -1,5 +1,4 @@
<script setup>
import { defineProps } from 'vue';
import { useRoute } from 'vue-router';
import Mission from './Header/Mission.vue';
import ContactList from './Header/ContactList.vue';

View File

@@ -1,5 +1,5 @@
<script setup>
import { defineProps, computed } from 'vue';
import { computed } from 'vue';
const props = defineProps({
loading: {

View File

@@ -1,6 +1,4 @@
<script setup>
import { defineProps } from 'vue';
defineProps({
loading: {
type: Boolean,