closes #4834 create-worker-module #28

Merged
joan merged 27 commits from 4834-create-worker-module into dev 2023-03-08 09:54:59 +00:00
1 changed files with 1 additions and 3 deletions
Showing only changes of commit 7c0386f729 - Show all commits

View File

@ -1,5 +1,5 @@
<script setup>
import { onMounted, computed, ref, onUpdated } from 'vue';
import { onMounted, computed, ref } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';
import { useSession } from 'src/composables/useSession';
@ -18,8 +18,6 @@ onMounted(async () => {
await fetch();
});
onUpdated(async () => await fetch());
const route = useRoute();
const { t } = useI18n();
const { getToken } = useSession();