mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
16 lines
291 B
TypeScript
16 lines
291 B
TypeScript
import RayGlobalProvider from '@/components/RayGlobalProvider/index'
|
|
import { RouterView } from 'vue-router'
|
|
|
|
const App = defineComponent({
|
|
name: 'App',
|
|
render() {
|
|
return (
|
|
<RayGlobalProvider>
|
|
<RouterView />
|
|
</RayGlobalProvider>
|
|
)
|
|
},
|
|
})
|
|
|
|
export default App
|