mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
14 lines
240 B
Vue
14 lines
240 B
Vue
<template>
|
|
<app-provider>
|
|
<router-view />
|
|
</app-provider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { setupAppContext } from '@/context';
|
|
import AppProvider from './AppProvider.vue';
|
|
|
|
setupAppContext();
|
|
</script>
|
|
<style></style>
|