1 Star 0 Fork 17

Smile²º¹⁸/nuxt3-chinese-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.vue 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
pioneer 提交于 2022-11-23 15:44 . SEO优化
<template>
<NuxtLayout>
<div class="app-box">
<NuxtPage />
</div>
</NuxtLayout>
</template>
<style>
/* 过渡动画:样式名为page,需与~/nuxt.config.ts中过渡名称一致 */
.page-enter-active,.page-leave-active {
transition: all 0.4s;
}
.page-enter-from,.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
/* 过渡动画:样式名为rotate,需与页面的definePageMeta中过渡名称一致 */
.rotate-enter-active,.rotate-leave-active {
transition: all 0.4s;
}
.rotate-enter-from,.rotate-leave-to {
opacity: 0;
transform: rotate3d(1, 1, 1, 15deg);
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/BrandonJMuller/nuxt3-chinese-examples.git
git@gitee.com:BrandonJMuller/nuxt3-chinese-examples.git
BrandonJMuller
nuxt3-chinese-examples
nuxt3-chinese-examples
main

搜索帮助