simple-rbac/src/App.vue
2025-02-15 17:30:40 +08:00

13 lines
169 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
</script>
<template>
<div id="app">
<RouterView />
</div>
</template>
<style scoped>
</style>