reverted back from vue typescript to javascript to fix bad performance...

This commit is contained in:
Sockenklaus
2023-07-10 23:05:49 +02:00
parent 7f33499459
commit 3534b9fb8d
16 changed files with 593 additions and 346 deletions

View File

@@ -12,16 +12,12 @@
</div>
</template>
<script setup lang="ts">
<script setup>
import { ref } from 'vue'
import FlashMessages from '@/components/FlashMessages.vue'
import { NMessageProvider } from 'naive-ui'
const props = defineProps({
test: String,
flashMessages: Object
})
const props = defineProps(['test', 'flashMessages'])
const helloWorld = ref<String>("helloWorld")
const helloWorld = ref("helloWorld")
</script>