ruoyi-plus-soybean/src/App.vue

14 lines
236 B
Vue
Raw Normal View History

<template>
<app-provider>
<router-view />
</app-provider>
</template>
<script lang="ts" setup>
2021-12-25 01:23:44 +08:00
import { fetchTestMock } from '@/service';
import AppProvider from './AppProvider.vue';
2021-12-25 01:23:44 +08:00
fetchTestMock();
</script>
<style></style>