You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GCSGUI/src/App.vue

17 lines
276 B
Vue

<template>
<n-message-provider>
<n-dialog-provider>
<n-modal-provider>
<RouterView/>
</n-modal-provider>
</n-dialog-provider>
</n-message-provider>
</template>
<script setup>
import { RouterView } from 'vue-router'
</script>
<style>
</style>