mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-26 23:10:18 +08:00
11 lines
182 B
Vue
11 lines
182 B
Vue
<template>
|
|
<app-provider>
|
|
<router-view />
|
|
</app-provider>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import AppProvider from './AppProvider.vue';
|
|
</script>
|
|
<style scoped></style>
|