Move script tag to the start of the file
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good Details

This commit is contained in:
William Buezas 2024-08-14 08:37:04 -03:00
parent 67c6f84de3
commit b66c47955c
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,3 @@
<template>
<router-view />
</template>
<script setup>
import { useAppStore } from 'stores/app';
import { onBeforeMount } from 'vue';
@ -9,3 +5,7 @@ const appStore = useAppStore();
onBeforeMount(() => appStore.init());
</script>
<template>
<router-view />
</template>