mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-24 21:40:22 +08:00
14 lines
236 B
Vue
14 lines
236 B
Vue
<template>
|
|
<app-provider>
|
|
<router-view />
|
|
</app-provider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { fetchTestMock } from '@/service';
|
|
import AppProvider from './AppProvider.vue';
|
|
|
|
fetchTestMock();
|
|
</script>
|
|
<style></style>
|