mirror of
https://github.com/HoshinoSuzumi/rayine-ui.git
synced 2025-04-06 13:48:53 +08:00
20 lines
309 B
Vue
20 lines
309 B
Vue
<script setup lang="ts">
|
|
const { data: navigation } = await useAsyncData('navigation', () => fetchContentNavigation())
|
|
|
|
provide('navigation', navigation)
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
|
|
<RayMessages />
|
|
</template>
|
|
|
|
<style>
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
</style>
|